1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/X86/barrier.ll
Alex Rosenberg c81cb80d2a Revert part of r227437 as it was unnecessary. Thanks to echristo for
pointing this out.

llvm-svn: 227897
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
}