hanchenye-llvm-project/llvm/test/CodeGen/X86/barrier-sse.ll

15 lines
227 B
LLVM

; 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
}