Files
clang-p2996/llvm/test/CodeGen/SystemZ/atomic-load-02.ll
Kai Nacke a1710eb3cd [SystemZ][NFC] Opaque pointer migration.
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.
2022-10-11 21:09:43 +00:00

12 lines
243 B
LLVM

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