summaryrefslogtreecommitdiff
path: root/polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll')
-rw-r--r--polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll18
1 files changed, 9 insertions, 9 deletions
diff --git a/polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll b/polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll
index 483433200bcd..b824c211fd31 100644
--- a/polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll
+++ b/polly/test/IstAstInfo/aliasing_multiple_alias_groups.ll
@@ -23,20 +23,20 @@
;
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
-define void @jd(i32* nocapture %Int0, i32* nocapture readonly %Int1, float* nocapture %Float0, float* nocapture readonly %Float1) {
+define void @jd(ptr nocapture %Int0, ptr nocapture readonly %Int1, ptr nocapture %Float0, ptr nocapture readonly %Float1) {
entry:
br label %for.body
for.body: ; preds = %for.body, %entry
%indvars.iv = phi i64 [ 0, %entry ], [ %indvars.iv.next, %for.body ]
- %arrayidx = getelementptr inbounds i32, i32* %Int1, i64 %indvars.iv
- %tmp = load i32, i32* %arrayidx, align 4, !tbaa !0
- %arrayidx2 = getelementptr inbounds i32, i32* %Int0, i64 %indvars.iv
- store i32 %tmp, i32* %arrayidx2, align 4, !tbaa !0
- %arrayidx4 = getelementptr inbounds float, float* %Float1, i64 %indvars.iv
- %tmp1 = load float, float* %arrayidx4, align 4, !tbaa !4
- %arrayidx6 = getelementptr inbounds float, float* %Float0, i64 %indvars.iv
- store float %tmp1, float* %arrayidx6, align 4, !tbaa !4
+ %arrayidx = getelementptr inbounds i32, ptr %Int1, i64 %indvars.iv
+ %tmp = load i32, ptr %arrayidx, align 4, !tbaa !0
+ %arrayidx2 = getelementptr inbounds i32, ptr %Int0, i64 %indvars.iv
+ store i32 %tmp, ptr %arrayidx2, align 4, !tbaa !0
+ %arrayidx4 = getelementptr inbounds float, ptr %Float1, i64 %indvars.iv
+ %tmp1 = load float, ptr %arrayidx4, align 4, !tbaa !4
+ %arrayidx6 = getelementptr inbounds float, ptr %Float0, i64 %indvars.iv
+ store float %tmp1, ptr %arrayidx6, align 4, !tbaa !4
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
%exitcond = icmp eq i64 %indvars.iv.next, 1024
br i1 %exitcond, label %for.end, label %for.body