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