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.
13 lines
268 B
13 lines
268 B
7 months ago
|
; Test 8-bit atomic loads.
|
||
|
;
|
||
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
||
|
|
||
|
define i8 @f1(i8 *%src) {
|
||
|
; CHECK-LABEL: f1:
|
||
|
; CHECK: bcr 1{{[45]}}, %r0
|
||
|
; CHECK: lb %r2, 0(%r2)
|
||
|
; CHECK: br %r14
|
||
|
%val = load atomic i8 , i8 *%src seq_cst, align 1
|
||
|
ret i8 %val
|
||
|
}
|