From 76eef3df7e9ca7a6041230c183ac46666fd99afc Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Tue, 25 Jan 2011 12:31:43 +0000 Subject: [PATCH] Turn off this test - the corresponding instsimplify logic has been disabled. llvm-svn: 124185 --- test/Transforms/InstSimplify/2011-01-18-Compare.ll | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Transforms/InstSimplify/2011-01-18-Compare.ll b/test/Transforms/InstSimplify/2011-01-18-Compare.ll index 78e225a8d1c..705f3542498 100644 --- a/test/Transforms/InstSimplify/2011-01-18-Compare.ll +++ b/test/Transforms/InstSimplify/2011-01-18-Compare.ll @@ -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) {