aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll b/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll
index 230e245905..82b223a4dd 100644
--- a/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll
+++ b/test/Transforms/InstCombine/2009-06-16-SRemDemandedBits.ll
@@ -7,12 +7,3 @@ entry:
%and = and i32 %rem, 2
ret i32 %and
}
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep srem
-; PR3439
-
-define i32 @a(i32 %x) nounwind {
-entry:
- %rem = srem i32 %x, 2
- %and = and i32 %rem, 2
- ret i32 %and
-}