aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb/cmp-add-fold.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Thumb/cmp-add-fold.ll')
-rw-r--r--test/CodeGen/Thumb/cmp-add-fold.ll33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/CodeGen/Thumb/cmp-add-fold.ll b/test/CodeGen/Thumb/cmp-add-fold.ll
deleted file mode 100644
index aa61b0825b0c..000000000000
--- a/test/CodeGen/Thumb/cmp-add-fold.ll
+++ /dev/null
@@ -1,33 +0,0 @@
-; RUN: llc -mtriple=thumbv6m-eabi -verify-machineinstrs < %s | FileCheck --check-prefix=CHECK --check-prefix=T1 %s
-; RUN: llc -mtriple=thumbv7m-eabi -verify-machineinstrs < %s | FileCheck --check-prefix=CHECK --check-prefix=T2 %s
-
-; CHECK-LABEL: addri1:
-; T1: adds r0, r0, #3
-; T1-NEXT: b{{eq|ne}}
-; T2: adds r0, #3
-; T2-NOT: cmp
-define i32 @addri1(i32 %a, i32 %b) {
- %c = add i32 %a, 3
- %d = icmp eq i32 %c, 0
- br i1 %d, label %true, label %false
-
-true:
- ret i32 4
-false:
- ret i32 5
-}
-
-; CHECK-LABEL: addri2:
-; CHECK: adds r0, #254
-; T1-NEXT: b{{eq|ne}}
-; T2-NOT: cmp
-define i32 @addri2(i32 %a, i32 %b) {
- %c = add i32 %a, 254
- %d = icmp eq i32 %c, 0
- br i1 %d, label %true, label %false
-
-true:
- ret i32 4
-false:
- ret i32 5
-}