summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-05-04 20:48:42 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-05-04 20:48:42 +0000
commit24d4c9911e7707eb0c35872f33c8ca01b3edcd7f (patch)
tree59bb3569a25657a4613a9e31cc4a64618cd03a6b /test
parent49cec1d818d0c7d801e786c458896a60eb424524 (diff)
downloadllvm-24d4c9911e7707eb0c35872f33c8ca01b3edcd7f.tar.gz
llvm-24d4c9911e7707eb0c35872f33c8ca01b3edcd7f.tar.bz2
llvm-24d4c9911e7707eb0c35872f33c8ca01b3edcd7f.tar.xz
Back out r130862; it appears to be breaking bootstrap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/Thumb2/thumb2-cbnz.ll4
-rw-r--r--test/CodeGen/X86/cmp-redundant.ll22
2 files changed, 2 insertions, 24 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-cbnz.ll b/test/CodeGen/Thumb2/thumb2-cbnz.ll
index 0ca97647d5..10a4985d17 100644
--- a/test/CodeGen/Thumb2/thumb2-cbnz.ll
+++ b/test/CodeGen/Thumb2/thumb2-cbnz.ll
@@ -21,8 +21,8 @@ bb7: ; preds = %bb3
bb9: ; preds = %bb7
; CHECK: cmp r0, #0
-; CHECK-NOT: cmp
-; CHECK: cbnz
+; CHECK: cmp r0, #0
+; CHECK-NEXT: cbnz
%0 = tail call double @floor(double %b) nounwind readnone ; <double> [#uses=0]
br label %bb11
diff --git a/test/CodeGen/X86/cmp-redundant.ll b/test/CodeGen/X86/cmp-redundant.ll
deleted file mode 100644
index d30ea3edd6..0000000000
--- a/test/CodeGen/X86/cmp-redundant.ll
+++ /dev/null
@@ -1,22 +0,0 @@
-; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck %s
-
-define i32 @cmp(i32* %aa, i32* %bb) nounwind readnone ssp {
-entry:
- %a = load i32* %aa
- %b = load i32* %bb
- %cmp = icmp sgt i32 %a, %b
- br i1 %cmp, label %return, label %if.end
-; CHECK: cmp:
-; CHECK: cmpl
-; CHECK: jg
-if.end: ; preds = %entry
-; CHECK-NOT: cmpl
-; CHECK: cmov
- %cmp4 = icmp slt i32 %a, %b
- %. = select i1 %cmp4, i32 2, i32 111
- br label %return
-
-return: ; preds = %if.end, %entry
- %retval.0 = phi i32 [ 1, %entry ], [ %., %if.end ]
- ret i32 %retval.0
-}