summaryrefslogtreecommitdiff
path: root/polly/test/DeLICM/reduction_unrelatedunusual.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/DeLICM/reduction_unrelatedunusual.ll')
-rw-r--r--polly/test/DeLICM/reduction_unrelatedunusual.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/polly/test/DeLICM/reduction_unrelatedunusual.ll b/polly/test/DeLICM/reduction_unrelatedunusual.ll
index c275ae19633d..04c437770700 100644
--- a/polly/test/DeLICM/reduction_unrelatedunusual.ll
+++ b/polly/test/DeLICM/reduction_unrelatedunusual.ll
@@ -15,7 +15,7 @@
; }
; }
;
-define void @func(double* noalias nonnull %A, double* noalias nonnull %C) {
+define void @func(ptr noalias nonnull %A, ptr noalias nonnull %C) {
entry:
br label %outer.for
@@ -35,8 +35,8 @@ outer.for:
body:
%add = fadd double %phi, 4.2
- store double 21.0, double* %C
- store double 41.0, double* %C
+ store double 21.0, ptr %C
+ store double 41.0, ptr %C
br label %reduction.inc
@@ -46,8 +46,8 @@ outer.for:
br label %reduction.for
reduction.exit:
- %A_idx = getelementptr inbounds double, double* %A, i32 %j
- store double %phi, double* %A_idx
+ %A_idx = getelementptr inbounds double, ptr %A, i32 %j
+ store double %phi, ptr %A_idx
br label %outer.inc