]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/X86/2007-03-24-InlineAsmXConstraint.ll
Import LLVM, at r72732.
[FreeBSD/FreeBSD.git] / test / CodeGen / X86 / 2007-03-24-InlineAsmXConstraint.ll
1 ; RUN: llvm-as < %s | llc -march=x86 | grep {psrlw \$8, %xmm0}
2 target datalayout = "e-p:32:32"
3 target triple = "i686-apple-darwin9"
4
5 define void @test() {
6         tail call void asm sideeffect "psrlw $0, %xmm0", "X,~{dirflag},~{fpsr},~{flags}"( i32 8 )
7         ret void
8 }
9