blob: 02c3ac0e36f1e9a2f89ab97ad06579bbb68006dd [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | grep {ret i32 0}
2
3; Test that SCCP has basic knowledge of when and/or nuke overdefined values.
4
5int %test(int %X) {
6 %Y = and int %X, 0
7 ret int %Y
8}