mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-09 03:56:28 +00:00
![Eli Friedman](/assets/img/avatar_default.png)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140585 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
222 B
LLVM
9 lines
222 B
LLVM
; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep sfence
|
|
; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep lfence
|
|
; RUN: llc < %s -march=x86 -mattr=+sse2 | grep mfence
|
|
|
|
define void @test() {
|
|
fence seq_cst
|
|
ret void
|
|
}
|