diff options
Diffstat (limited to 'test/CodeGen/X86/mul128_sext_loop.ll')
-rw-r--r-- | test/CodeGen/X86/mul128_sext_loop.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/mul128_sext_loop.ll b/test/CodeGen/X86/mul128_sext_loop.ll index a516f03..efb7e02 100644 --- a/test/CodeGen/X86/mul128_sext_loop.ll +++ b/test/CodeGen/X86/mul128_sext_loop.ll @@ -14,8 +14,8 @@ define void @test(i64* nocapture %arr, i64 %arrsize, i64 %factor) nounwind uwtab ; CHECK-NOT: mul %carry.02 = phi i128 [ 0, %.lr.ph ], [ %10, %3 ] %i.01 = phi i64 [ 0, %.lr.ph ], [ %11, %3 ] - %4 = getelementptr inbounds i64* %arr, i64 %i.01 - %5 = load i64* %4, align 8 + %4 = getelementptr inbounds i64, i64* %arr, i64 %i.01 + %5 = load i64, i64* %4, align 8 %6 = sext i64 %5 to i128 %7 = mul nsw i128 %6, %2 %8 = add nsw i128 %7, %carry.02 |