summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-28 05:30:48 +0000
committerChris Lattner <sabre@nondot.org>2006-02-28 05:30:48 +0000
commite7f2aa74c0e95802a60a87468864817079863ef3 (patch)
tree6574d2eb6b108c3e8b29c930661d293a35603591 /test
parent19ccd5c757a7385e53fd89d29872b6ee131fa064 (diff)
downloadllvm-e7f2aa74c0e95802a60a87468864817079863ef3.tar.gz
llvm-e7f2aa74c0e95802a60a87468864817079863ef3.tar.bz2
llvm-e7f2aa74c0e95802a60a87468864817079863ef3.tar.xz
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/InstCombine/rem.ll8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/rem.ll b/test/Transforms/InstCombine/rem.ll
index b1b555513d..1141d4d9e0 100644
--- a/test/Transforms/InstCombine/rem.ll
+++ b/test/Transforms/InstCombine/rem.ll
@@ -1,6 +1,6 @@
; This test makes sure that these instructions are properly eliminated.
;
-
+; RUN: llvm-as < %s | opt -instcombine -disable-output &&
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep rem
implementation
@@ -10,7 +10,7 @@ int %test1(int %A) {
ret int %B
}
-int %test2(int %A) { ; 0 % X = 0, we don't need ot preserve traps
+int %test2(int %A) { ; 0 % X = 0, we don't need to preserve traps
%B = rem int 0, %A
ret int %B
}
@@ -38,3 +38,7 @@ uint %test5(uint %X, ubyte %B) {
ret uint %V
}
+int %test6(int %A) {
+ %B = rem int %A, 0 ;; undef
+ ret int %B
+}