You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
239 B

; Test 8-bit atomic loads.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
define i8 @f1(i8 *%src) {
; CHECK-LABEL: f1:
; CHECK: lb %r2, 0(%r2)
; CHECK: br %r14
%val = load atomic i8, i8 *%src seq_cst, align 1
ret i8 %val
}