9 lines
171 B
LLVM
9 lines
171 B
LLVM
|
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep sfence
|
||
|
|
||
|
declare void @llvm.x86.sse.sfence() nounwind
|
||
|
|
||
|
define void @test() {
|
||
|
call void @llvm.x86.sse.sfence()
|
||
|
ret void
|
||
|
}
|