Mercurial > hg > CbC > CbC_llvm
annotate test/CodeGen/X86/barrier-sse.ll @ 0:95c75e76d11b LLVM3.4
LLVM 3.4
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 12 Dec 2013 13:56:28 +0900 |
parents | |
children | 54457678186b |
rev | line source |
---|---|
0 | 1 ; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep sfence |
2 ; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep lfence | |
3 ; RUN: llc < %s -march=x86 -mattr=+sse2 | not grep mfence | |
4 ; RUN: llc < %s -march=x86 -mattr=+sse2 | grep MEMBARRIER | |
5 | |
6 define void @test() { | |
7 fence acquire | |
8 fence release | |
9 fence acq_rel | |
10 ret void | |
11 } |