summaryrefslogtreecommitdiff
path: root/polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll')
-rw-r--r--polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll b/polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll
index 2845ff7aebbf..0387aecd683b 100644
--- a/polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll
+++ b/polly/test/ScheduleOptimizer/ManualOptimization/unroll_heuristic.ll
@@ -4,7 +4,7 @@
; Unrolling with heuristic factor.
; Currently not supported and expected to be handled by LLVM's unroll pass.
;
-define void @func(i32 %n, double* noalias nonnull %A) {
+define void @func(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -14,7 +14,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: