diff polly/test/ScopInfo/aliasing_multiple_alias_groups.ll @ 252:1f2b6ac9f198 llvm-original

LLVM16-1
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 18 Aug 2023 09:04:13 +0900
parents c4bab56944e8
children
line wrap: on
line diff
--- a/polly/test/ScopInfo/aliasing_multiple_alias_groups.ll	Wed Nov 09 17:47:54 2022 +0900
+++ b/polly/test/ScopInfo/aliasing_multiple_alias_groups.ll	Fri Aug 18 09:04:13 2023 +0900
@@ -10,20 +10,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