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