summaryrefslogtreecommitdiff
path: root/polly/test/DeLICM/reduction_looprotate_load.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/DeLICM/reduction_looprotate_load.ll')
-rw-r--r--polly/test/DeLICM/reduction_looprotate_load.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/test/DeLICM/reduction_looprotate_load.ll b/polly/test/DeLICM/reduction_looprotate_load.ll
index d3820cb1bb06..6aa83ae19503 100644
--- a/polly/test/DeLICM/reduction_looprotate_load.ll
+++ b/polly/test/DeLICM/reduction_looprotate_load.ll
@@ -9,7 +9,7 @@
; }
; }
;
-define void @func(double* noalias nonnull %A, double* noalias nonnull %StartPtr) {
+define void @func(ptr noalias nonnull %A, ptr noalias nonnull %StartPtr) {
entry:
br label %outer.preheader
@@ -23,7 +23,7 @@ outer.for:
reduction.preheader:
- %Start = load double, double* %StartPtr
+ %Start = load double, ptr %StartPtr
br label %reduction.for
reduction.for:
@@ -45,8 +45,8 @@ outer.for:
br i1 %i.cmp, label %reduction.for, label %reduction.exit
reduction.exit:
- %A_idx = getelementptr inbounds double, double* %A, i32 %j
- store double %add, double* %A_idx
+ %A_idx = getelementptr inbounds double, ptr %A, i32 %j
+ store double %add, ptr %A_idx
br label %outer.inc