Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 | 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 
     15