aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/barrier.ll
blob: 1f60131f33caa6562b22c0431c4280ecd99bea0f (plain)
1
2
3
4
5
6
7
; RUN: llc < %s -march=x86 -mattr=-sse2 | FileCheck %s

define void @test() {
; CHECK: lock
	fence seq_cst
	ret void
}