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