summaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/select-load-call.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstCombine/select-load-call.ll')
-rw-r--r--test/Transforms/InstCombine/select-load-call.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/select-load-call.ll b/test/Transforms/InstCombine/select-load-call.ll
index b63468d..ad0ef4f 100644
--- a/test/Transforms/InstCombine/select-load-call.ll
+++ b/test/Transforms/InstCombine/select-load-call.ll
@@ -10,6 +10,6 @@ define i32 @test(i1 %cond, i32 *%P) {
call void @test2() readonly
%P2 = select i1 %cond, i32 *%P, i32* %A
- %V = load i32* %P2
+ %V = load i32, i32* %P2
ret i32 %V
}