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.
|
; Serialization is emitted only for fence seq_cst.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define void @test() {
|
|
; CHECK: #MEMBARRIER
|
|
fence acquire
|
|
; CHECK: #MEMBARRIER
|
|
fence release
|
|
; CHECK: #MEMBARRIER
|
|
fence acq_rel
|
|
ret void
|
|
}
|