diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll b/llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll index 44f2468f6fa..7b5b205ac5c 100644 --- a/llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll +++ b/llvm/test/CodeGen/X86/2011-12-8-bitcastintprom.ll @@ -6,12 +6,16 @@ define void @prom_bug(<4 x i8> %t, i16* %p) { ; SSE2-LABEL: prom_bug: ; SSE2: ## %bb.0: -; SSE2-NEXT: movd %xmm0, %eax +; SSE2-NEXT: pand {{.*}}(%rip), %xmm0 +; SSE2-NEXT: packuswb %xmm0, %xmm0 +; SSE2-NEXT: packuswb %xmm0, %xmm0 +; SSE2-NEXT: pextrw $0, %xmm0, %eax ; SSE2-NEXT: movw %ax, (%rdi) ; SSE2-NEXT: retq ; ; SSE41-LABEL: prom_bug: ; SSE41: ## %bb.0: +; SSE41-NEXT: pshufb {{.*#+}} xmm0 = xmm0[0,4,8,12,u,u,u,u,u,u,u,u,u,u,u,u] ; SSE41-NEXT: pextrw $0, %xmm0, (%rdi) ; SSE41-NEXT: retq %r = bitcast <4 x i8> %t to <2 x i16> |