aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-mla.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Thumb2/thumb2-mla.ll')
-rw-r--r--test/CodeGen/Thumb2/thumb2-mla.ll25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-mla.ll b/test/CodeGen/Thumb2/thumb2-mla.ll
deleted file mode 100644
index 0c97d50bd284..000000000000
--- a/test/CodeGen/Thumb2/thumb2-mla.ll
+++ /dev/null
@@ -1,25 +0,0 @@
-; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
-; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 \
-; RUN: -arm-use-mulops=false %s -o - | FileCheck %s -check-prefix=NO_MULOPS
-
-define i32 @f1(i32 %a, i32 %b, i32 %c) {
- %tmp1 = mul i32 %a, %b
- %tmp2 = add i32 %c, %tmp1
- ret i32 %tmp2
-}
-; CHECK-LABEL: f1:
-; CHECK: mla r0, r0, r1, r2
-; NO_MULOPS-LABEL: f1:
-; NO_MULOPS: muls r0, r1, r0
-; NO_MULOPS-NEXT: add r0, r2
-
-define i32 @f2(i32 %a, i32 %b, i32 %c) {
- %tmp1 = mul i32 %a, %b
- %tmp2 = add i32 %tmp1, %c
- ret i32 %tmp2
-}
-; CHECK-LABEL: f2:
-; CHECK: mla r0, r0, r1, r2
-; NO_MULOPS-LABEL: f2:
-; NO_MULOPS: muls r0, r1, r0
-; NO_MULOPS-NEXT: add r0, r2