summaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-01-30 18:24:20 +0000
committerDuncan Sands <baldrick@free.fr>2011-01-30 18:24:20 +0000
commit7af00c0f6e4a5612a2438269a6f8a71b0ae9190e (patch)
tree596576f7d968d8d27fce35adfd8ea828324925e0 /test/Transforms/InstSimplify
parent1895e98ef38afbe011575cc25f4889d96e37421b (diff)
downloadllvm-7af00c0f6e4a5612a2438269a6f8a71b0ae9190e.tar.gz
llvm-7af00c0f6e4a5612a2438269a6f8a71b0ae9190e.tar.bz2
llvm-7af00c0f6e4a5612a2438269a6f8a71b0ae9190e.tar.xz
Commit 124487 broke 254.gap. See if disabling the part that might be triggered
by PR9088 fixes things. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify')
-rw-r--r--test/Transforms/InstSimplify/2010-12-20-Reassociate.ll4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/Transforms/InstSimplify/2010-12-20-Reassociate.ll b/test/Transforms/InstSimplify/2010-12-20-Reassociate.ll
index 928442ac56..c0ae257dcd 100644
--- a/test/Transforms/InstSimplify/2010-12-20-Reassociate.ll
+++ b/test/Transforms/InstSimplify/2010-12-20-Reassociate.ll
@@ -92,12 +92,10 @@ define i32 @sub3(i32 %x, i32 %y) {
}
define i32 @sdiv1(i32 %x, i32 %y) {
-; CHECK: @sdiv1
; (no overflow X * Y) / Y -> X
%mul = mul nsw i32 %x, %y
%r = sdiv i32 %mul, %y
ret i32 %r
-; CHECK: ret i32 %x
}
define i32 @sdiv2(i32 %x, i32 %y) {
@@ -138,12 +136,10 @@ define i32 @sdiv5(i32 %x, i32 %y) {
}
define i32 @udiv1(i32 %x, i32 %y) {
-; CHECK: @udiv1
; (no overflow X * Y) / Y -> X
%mul = mul nuw i32 %x, %y
%r = udiv i32 %mul, %y
ret i32 %r
-; CHECK: ret i32 %x
}
define i32 @udiv2(i32 %x, i32 %y) {