Files
Android11/external/llvm/test/CodeGen/X86/sfence.ll
2023-10-13 14:01:41 +00:00

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
}