summaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/alias-check-multi-dim.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/alias-check-multi-dim.ll')
-rw-r--r--polly/test/CodeGen/alias-check-multi-dim.ll12
1 files changed, 5 insertions, 7 deletions
diff --git a/polly/test/CodeGen/alias-check-multi-dim.ll b/polly/test/CodeGen/alias-check-multi-dim.ll
index 8dddb996aa73..d923a4cc14fd 100644
--- a/polly/test/CodeGen/alias-check-multi-dim.ll
+++ b/polly/test/CodeGen/alias-check-multi-dim.ll
@@ -4,19 +4,17 @@ target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
; CHECK: sext i32 %indvar.init to i64
-define void @foo(double* %A, double* %B, i32 %p, i32 %indvar.init) {
+define void @foo(ptr %A, ptr %B, i32 %p, i32 %indvar.init) {
preheader:
br label %for.body
for.body:
%indvar = phi i32 [ %indvar.next, %for.body ], [ %indvar.init, %preheader ]
- %B.ptr0 = getelementptr inbounds double, double* %B, i64 0
- %tmp1 = load double, double* %B.ptr0
- %A.ptr = getelementptr inbounds double, double* %A, i64 0
- store double undef, double* %A.ptr
+ %tmp1 = load double, ptr %B
+ store double undef, ptr %A
%idxprom1329 = sext i32 %indvar to i64
- %B.ptr1 = getelementptr inbounds double, double* %B, i64 %idxprom1329
- store double 0.000000e+00, double* %B.ptr1
+ %B.ptr1 = getelementptr inbounds double, ptr %B, i64 %idxprom1329
+ store double 0.000000e+00, ptr %B.ptr1
%indvar.next = add nsw i32 %indvar, %p
br i1 false, label %for.body, label %exit