summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2013-03-04 18:20:31 +0000
committerEli Bendersky <eliben@google.com>2013-03-04 18:20:31 +0000
commit75d0ad42150d2446cc3bd062a93b59e9e1dc759b (patch)
tree70b7d4d8a60ffc8c42051419c013c7dc7ccb4444 /test/CodeGen/Thumb
parent9a2cfffdb6340c54ff553c1b81364d0f17fa8f45 (diff)
downloadllvm-75d0ad42150d2446cc3bd062a93b59e9e1dc759b.tar.gz
llvm-75d0ad42150d2446cc3bd062a93b59e9e1dc759b.tar.bz2
llvm-75d0ad42150d2446cc3bd062a93b59e9e1dc759b.tar.xz
Reapply r176381, writing the CHECKs in a more forgiving manner to account for
running llvm-objdump on Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb')
-rw-r--r--test/CodeGen/Thumb/iabs.ll26
1 files changed, 12 insertions, 14 deletions
diff --git a/test/CodeGen/Thumb/iabs.ll b/test/CodeGen/Thumb/iabs.ll
index 2e77660c45..a480f59fa0 100644
--- a/test/CodeGen/Thumb/iabs.ll
+++ b/test/CodeGen/Thumb/iabs.ll
@@ -1,22 +1,20 @@
-; RUN: llc < %s -march=thumb -stats 2>&1 | \
-; RUN: grep "4 .*Number of machine instrs printed"
-
-;; Integer absolute value, should produce something as good as:
-;; Thumb:
-;; movs r0, r0
-;; bpl
-;; rsb r0, r0, #0 (with opitmization, bpl + rsb is if-converted into rsbmi)
-;; bx lr
+; RUN: llc < %s -march=thumb -filetype=obj -o %t.o
+; RUN: llvm-objdump -disassemble -arch=thumb %t.o | FileCheck %s
define i32 @test(i32 %a) {
%tmp1neg = sub i32 0, %a
%b = icmp sgt i32 %a, -1
%abs = select i1 %b, i32 %a, i32 %tmp1neg
ret i32 %abs
-; CHECK: movs r0, r0
-; CHECK: bpl
-; CHECK: rsb r0, r0, #0
-; CHECK: bx lr
-}
+; This test just checks that 4 instructions were emitted
+
+; CHECK: {{text}}
+; CHECK: 0:
+; CHECK-NEXT: 2:
+; CHECK-NEXT: 4:
+; CHECK-NEXT: 6:
+
+; CHECK-NOT: 8:
+}