repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git]
/
test
/
CodeGen
/
X86
/
2007-03-24-InlineAsmXConstraint.ll
blob
9b9d819c1efb5afebb15d7a06b47d9d35fcc3aab
1
; RUN: llc < %s | FileCheck %s
2
target datalayout = "e-p:32:32"
3
target triple = "i686-apple-darwin9"
4
5
define void @test() {
6
; CHECK-LABEL: test:
7
; CHECK-NOT: ret
8
; CHECK: psrlw $8, %xmm0
9
; CHECK: ret
10
11
tail call void asm sideeffect "psrlw $0, %xmm0", "X,~{dirflag},~{fpsr},~{flags}"( i32 8 )
12
ret void
13
}
14