summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/mfence.ll
blob: 6056adddcb4b560ee5e311486302b61bbc9c81f6 (plain)
1
2
3
4
5
6
7
8
; 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
}