diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/widen_conversions.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/widen_conversions.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/widen_conversions.ll b/llvm/test/CodeGen/X86/widen_conversions.ll index fa85400e6b9..dd75097a251 100644 --- a/llvm/test/CodeGen/X86/widen_conversions.ll +++ b/llvm/test/CodeGen/X86/widen_conversions.ll @@ -12,7 +12,7 @@ define <4 x i32> @zext_v4i8_to_v4i32(<4 x i8>* %ptr) { ; CHECK-NEXT: punpcklwd %[[Z]], %[[X]] ; CHECK-NEXT: ret - %val = load <4 x i8>* %ptr + %val = load <4 x i8>, <4 x i8>* %ptr %ext = zext <4 x i8> %val to <4 x i32> ret <4 x i32> %ext } |