aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-06-17 03:05:00 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-06-17 03:05:00 +0000
commitaf79ae558f689a1a3707dfcd85fbb8735dcc1efa (patch)
tree321ad684552913d2128609e47939ddc038587619
parenta999a511f782badfbfe98f1cdf7e92d4824f7a46 (diff)
downloadexternal_llvm-af79ae558f689a1a3707dfcd85fbb8735dcc1efa.zip
external_llvm-af79ae558f689a1a3707dfcd85fbb8735dcc1efa.tar.gz
external_llvm-af79ae558f689a1a3707dfcd85fbb8735dcc1efa.tar.bz2
Correct an accidental duplication of the test (patch doesn't handle
creating new files very well). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73599 91177308-0d34-0410-b5e6-96231b3b80d8
-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 230e245..82b223a 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
-}