diff options
Diffstat (limited to 'llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll')
-rw-r--r-- | llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll index 23ea2e0cf60..3f521bace7f 100644 --- a/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll +++ b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll @@ -11,8 +11,8 @@ target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:1 define internal i32 @test(%QuadTy* %P) { %A = getelementptr %QuadTy, %QuadTy* %P, i64 0, i32 3 ; <i32*> [#uses=1] %B = getelementptr %QuadTy, %QuadTy* %P, i64 0, i32 2 ; <i32*> [#uses=1] - %a = load i32* %A ; <i32> [#uses=1] - %b = load i32* %B ; <i32> [#uses=1] + %a = load i32, i32* %A ; <i32> [#uses=1] + %b = load i32, i32* %B ; <i32> [#uses=1] %V = add i32 %a, %b ; <i32> [#uses=1] ret i32 %V } |