aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/atomic-store-01.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SystemZ/atomic-store-01.ll')
-rw-r--r--test/CodeGen/SystemZ/atomic-store-01.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/SystemZ/atomic-store-01.ll b/test/CodeGen/SystemZ/atomic-store-01.ll
deleted file mode 100644
index 952e1a912168..000000000000
--- a/test/CodeGen/SystemZ/atomic-store-01.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; Test 8-bit atomic stores.
-;
-; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
-
-define void @f1(i8 %val, i8 *%src) {
-; CHECK-LABEL: f1:
-; CHECK: stc %r2, 0(%r3)
-; CHECK: bcr 1{{[45]}}, %r0
-; CHECK: br %r14
- store atomic i8 %val, i8 *%src seq_cst, align 1
- ret void
-}