aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/Alpha/mb.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Alpha/mb.ll')
-rw-r--r--test/CodeGen/Alpha/mb.ll8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/Alpha/mb.ll b/test/CodeGen/Alpha/mb.ll
new file mode 100644
index 0000000..50c245f
--- /dev/null
+++ b/test/CodeGen/Alpha/mb.ll
@@ -0,0 +1,8 @@
+; RUN: llvm-as < %s | llc -march=alpha | grep mb
+
+declare void @llvm.memory.barrier( i1 , i1 , i1 , i1 , i1)
+
+define void @test() {
+ call void @llvm.memory.barrier( i1 true, i1 true, i1 true, i1 true , i1 true)
+ ret void
+}