summaryrefslogtreecommitdiff
path: root/test/CodeGen/SystemZ/atomic-store-01.ll
blob: 53ed24f623cf80ea726c81eb931e99e15dcec9a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; Test 8-bit atomic stores.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s

; This is just a placeholder to make sure that stores are handled.
; The CS-based sequence is probably far too conservative.
define void @f1(i8 %val, i8 *%src) {
; CHECK-LABEL: f1:
; CHECK: cs
; CHECK: br %r14
  store atomic i8 %val, i8 *%src seq_cst, align 1
  ret void
}