aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/atomic-fence-01.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/atomic-fence-01.ll')
-rw-r--r--test/CodeGen/SystemZ/atomic-fence-01.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/SystemZ/atomic-fence-01.ll b/test/CodeGen/SystemZ/atomic-fence-01.ll
deleted file mode 100644
index 25566db9078b..000000000000
--- a/test/CodeGen/SystemZ/atomic-fence-01.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; Test (fast) serialization.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s --check-prefix=Z10
-; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z196 | FileCheck %s --check-prefix=Z196
-; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=zEC12 | FileCheck %s --check-prefix=ZEC12
-; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s --check-prefix=Z13
-
-define void @test() {
-; Z10: bcr 15, %r0
-; Z196: bcr 14, %r0
-; ZEC12: bcr 14, %r0
-; Z13: bcr 14, %r0
- fence seq_cst
- ret void
-}
-