[ARM][NEON] Use address space in vld([1234]|[234]lane) and vst([1234]|[234]lane)...
[oota-llvm.git] / test / CodeGen / Thumb2 / thumb2-mla.ll
index 0772d7f69ad5dcf8a3b7b458282412cfcc957bbb..0c97d50bd2849073cbc5cce1791e65f482a70276 100644 (file)
@@ -1,13 +1,25 @@
-; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | grep {mla\\W*r\[0-9\],\\W*r\[0-9\],\\W*r\[0-9\],\\W*r\[0-9\]} | count 2
+; 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