diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/insertps-O0-bug.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/insertps-O0-bug.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/insertps-O0-bug.ll b/llvm/test/CodeGen/X86/insertps-O0-bug.ll index e89ac26ea07..73748ee7e52 100644 --- a/llvm/test/CodeGen/X86/insertps-O0-bug.ll +++ b/llvm/test/CodeGen/X86/insertps-O0-bug.ll @@ -40,11 +40,11 @@ define <4 x float> @test(<4 x float> %a, <4 x float>* %b) { ; CHECK: insertps $64, [[REG]], ; CHECK: ret entry: - %0 = load <4 x float>* %b, align 16 + %0 = load <4 x float>, <4 x float>* %b, align 16 %1 = call <4 x float> @llvm.x86.sse41.insertps(<4 x float> %a, <4 x float> %0, i32 64) %2 = alloca <4 x float>, align 16 store <4 x float> %1, <4 x float>* %2, align 16 - %3 = load <4 x float>* %2, align 16 + %3 = load <4 x float>, <4 x float>* %2, align 16 ret <4 x float> %3 } |