mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
10059d8172
After r182274, the branches in these tests must always be short. llvm-svn: 182358
17 lines
433 B
LLVM
17 lines
433 B
LLVM
; Test 32-bit atomic stores.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
; This is just a placeholder to make sure that stores are handled.
|
|
; Using CS is probably too conservative.
|
|
define void @f1(i32 %val, i32 *%src) {
|
|
; CHECK: f1:
|
|
; CHECK: l %r0, 0(%r3)
|
|
; CHECK: [[LABEL:\.[^:]*]]:
|
|
; CHECK: cs %r0, %r2, 0(%r3)
|
|
; CHECK: jlh [[LABEL]]
|
|
; CHECK: br %r14
|
|
store atomic i32 %val, i32 *%src seq_cst, align 4
|
|
ret void
|
|
}
|