diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll b/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll index e4313060ba9..ab57b61770d 100644 --- a/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll +++ b/llvm/test/CodeGen/X86/2012-01-18-vbitcast.ll @@ -4,8 +4,9 @@ define <2 x i32> @vcast(<2 x float> %a, <2 x float> %b) { ; CHECK-LABEL: vcast: ; CHECK: # %bb.0: -; CHECK-NEXT: movdqa (%rcx), %xmm0 -; CHECK-NEXT: psubd (%rdx), %xmm0 +; CHECK-NEXT: pmovzxdq {{.*#+}} xmm0 = mem[0],zero,mem[1],zero +; CHECK-NEXT: pmovzxdq {{.*#+}} xmm1 = mem[0],zero,mem[1],zero +; CHECK-NEXT: psubq %xmm1, %xmm0 ; CHECK-NEXT: retq %af = bitcast <2 x float> %a to <2 x i32> %bf = bitcast <2 x float> %b to <2 x i32> |