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.
|
; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse2 | FileCheck %s
|
|
|
|
define void @test() {
|
|
fence acquire
|
|
; CHECK: #MEMBARRIER
|
|
|
|
fence release
|
|
; CHECK: #MEMBARRIER
|
|
|
|
fence acq_rel
|
|
; CHECK: #MEMBARRIER
|
|
|
|
ret void
|
|
}
|