aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/print-memb-operand.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/print-memb-operand.ll')
-rw-r--r--test/CodeGen/ARM/print-memb-operand.ll12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/print-memb-operand.ll b/test/CodeGen/ARM/print-memb-operand.ll
new file mode 100644
index 0000000..7748efb
--- /dev/null
+++ b/test/CodeGen/ARM/print-memb-operand.ll
@@ -0,0 +1,12 @@
+; RUN: llc -mtriple=armv7 %s -o - | FileCheck %s
+
+; CHECK: dmb ld
+
+define void @test2() #0 {
+ call void @llvm.arm.dmb(i32 13)
+ ret void
+}
+
+declare void @llvm.arm.dmb(i32)
+
+attributes #0 = { "target-cpu"="cyclone" }