
The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
12 lines
242 B
LLVM
12 lines
242 B
LLVM
; Test 32-bit atomic loads.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define i32 @f1(ptr %src) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: l %r2, 0(%r2)
|
|
; CHECK: br %r14
|
|
%val = load atomic i32, ptr %src seq_cst, align 4
|
|
ret i32 %val
|
|
}
|