Files
archived-llvm/test/CodeGen/SystemZ/atomic-load-02.ll
Ulrich Weigand b15f0ae4d4 [SystemZ] Test case formatting fixes
Fix systematically wrong whitespace from a prior automated change.

NFC.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337542 91177308-0d34-0410-b5e6-96231b3b80d8
2018-07-20 12:12:10 +00:00

12 lines
245 B
LLVM

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