summaryrefslogtreecommitdiff
path: root/polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll')
-rw-r--r--polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll b/polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll
index a35a1531fddd..81e40f0a98bb 100644
--- a/polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll
+++ b/polly/test/ScheduleOptimizer/ManualOptimization/unroll_partial.ll
@@ -3,7 +3,7 @@
;
; Partial unroll by a factor of 4.
;
-define void @func(i32 %n, double* noalias nonnull %A) {
+define void @func(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -13,7 +13,7 @@ for:
br i1 %j.cmp, label %body, label %exit
body:
- store double 42.0, double* %A
+ store double 42.0, ptr %A
br label %inc
inc: