repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
X86
/
barrier-sse.ll
blob
80c0cc82e93e0408a694390a739c59757da39799
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
}