brintos

brintos / llvm-project-archived public Read only

0
0
Text · 306 B · 9b9d819 Raw
15 lines · plain
1; RUN: llc < %s | FileCheck %s2target datalayout = "e-p:32:32"3target triple = "i686-apple-darwin9"4 5define void @test() {6; CHECK-LABEL: test:7; CHECK-NOT: ret8; CHECK: psrlw $8, %xmm09; CHECK: ret10 11  tail call void asm sideeffect "psrlw $0, %xmm0", "X,~{dirflag},~{fpsr},~{flags}"( i32 8 )12  ret void13}14 15