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