diff polly/test/PruneUnprofitable/prune_only_scalardeps.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/PruneUnprofitable/prune_only_scalardeps.ll	Wed Nov 09 17:47:54 2022 +0900
+++ b/polly/test/PruneUnprofitable/prune_only_scalardeps.ll	Fri Aug 18 09:04:13 2023 +0900
@@ -14,7 +14,7 @@
 ;   }
 ; return x;
 ;
-define double @func(i32 %n, i32 %m, double* noalias nonnull %A, double* noalias nonnull %B) {
+define double @func(i32 %n, i32 %m, ptr noalias nonnull %A, ptr noalias nonnull %B) {
 entry:
   br label %outer.for
 
@@ -31,8 +31,8 @@
       br i1 %j.cmp, label %body, label %inner.exit
 
         body:
-          store double %inner.phi, double* %B
-          %load = load double, double* %A
+          store double %inner.phi, ptr %B
+          %load = load double, ptr %A
           br label %inner.inc
 
     inner.inc: