diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll b/llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll index be8563a9f2f..31efd4660ef 100644 --- a/llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll +++ b/llvm/test/CodeGen/X86/2009-06-05-VZextByteShort.ll @@ -7,6 +7,7 @@ define <4 x i16> @a(i32* %x1) nounwind { ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl (%eax), %eax ; CHECK-NEXT: shrl %eax +; CHECK-NEXT: movzwl %ax, %eax ; CHECK-NEXT: movd %eax, %xmm0 ; CHECK-NEXT: retl @@ -40,7 +41,7 @@ define <8 x i8> @c(i32* %x1) nounwind { ; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax ; CHECK-NEXT: movl (%eax), %eax ; CHECK-NEXT: shrl %eax -; CHECK-NEXT: movzwl %ax, %eax +; CHECK-NEXT: movzbl %al, %eax ; CHECK-NEXT: movd %eax, %xmm0 ; CHECK-NEXT: retl |