Add a triple to switch.ll test.
[oota-llvm.git] / test / CodeGen / X86 / barrier-sse.ll
1 ; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse2 | FileCheck %s
2
3 define void @test() {
4   fence acquire
5   ; CHECK: #MEMBARRIER
6
7   fence release
8   ; CHECK: #MEMBARRIER
9
10   fence acq_rel
11   ; CHECK: #MEMBARRIER
12
13   ret void
14 }