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

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