Turn off this test - the corresponding instsimplify logic has been

disabled.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124185 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2011-01-25 12:31:43 +00:00
parent 2539b73128
commit dadcf8eedd

View File

@ -61,13 +61,11 @@ define i1 @sext3() {
}
define i1 @add(i32 %x, i32 %y) {
; CHECK: @add
%l = lshr i32 %x, 1
%r = lshr i32 %y, 1
%s = add i32 %l, %r
%c = icmp eq i32 %s, 0
ret i1 %c
; CHECK: ret i1 false
}
define i1 @add2(i8 %x, i8 %y) {