projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add test to show suboptimal load merging behavior
[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
}