llvm-6502/test/CodeGen/X86/barrier.ll
Alex Rosenberg cba5c599e8 Revert part of r227437 as it was unnecessary. Thanks to echristo for
pointing this out.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227897 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-02 23:58:54 +00:00

8 lines
119 B
LLVM

; RUN: llc < %s -march=x86 -mattr=-sse2 | FileCheck %s
define void @test() {
; CHECK: lock
fence seq_cst
ret void
}