For PR1319: Upgrade to new test harness.
[oota-llvm.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