Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / CodeGen / X86 / barrier.ll
1 ; RUN: llc < %s -march=x86 -mattr=-sse2 | FileCheck %s
2
3 define void @test() {
4 ; CHECK: lock
5         fence seq_cst
6         ret void
7 }