summaryrefslogtreecommitdiff
path: root/polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll')
-rw-r--r--polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll14
1 files changed, 7 insertions, 7 deletions
diff --git a/polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll b/polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll
index ac21e6924406..f1eca0ede061 100644
--- a/polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll
+++ b/polly/test/ScheduleOptimizer/GreedyFuse/fuse-except-third.ll
@@ -1,7 +1,7 @@
; RUN: opt %loadPolly -polly-reschedule=0 -polly-loopfusion-greedy=1 -polly-postopts=0 -polly-print-opt-isl -disable-output < %s | FileCheck %s --check-prefixes=CHECK,RAW
; RUN: opt %loadPolly -polly-reschedule=1 -polly-loopfusion-greedy=1 -polly-postopts=0 -polly-print-opt-isl -disable-output < %s | FileCheck %s --check-prefixes=CHECK
-define void @func(i32 %n, double* noalias nonnull %A, double* noalias nonnull %B, i32 %k) {
+define void @func(i32 %n, ptr noalias nonnull %A, ptr noalias nonnull %B, i32 %k) {
entry:
br label %for1
@@ -12,8 +12,8 @@ for1:
br i1 %j1.cmp, label %body1, label %exit1
body1:
- %arrayidx1 = getelementptr inbounds double, double* %A, i32 %j1
- store double 21.0, double* %arrayidx1
+ %arrayidx1 = getelementptr inbounds double, ptr %A, i32 %j1
+ store double 21.0, ptr %arrayidx1
br label %inc1
inc1:
@@ -30,8 +30,8 @@ for2:
br i1 %j2.cmp, label %body2, label %exit2
body2:
- %arrayidx2 = getelementptr inbounds double, double* %B, i32 %j1
- store double 42.0, double* %arrayidx2
+ %arrayidx2 = getelementptr inbounds double, ptr %B, i32 %j1
+ store double 42.0, ptr %arrayidx2
br label %inc2
inc2:
@@ -49,8 +49,8 @@ for3:
body3:
%idx3 = add i32 %j3, %k
- %arrayidx3 = getelementptr inbounds double, double* %B, i32 %idx3
- store double 84.0, double* %arrayidx3
+ %arrayidx3 = getelementptr inbounds double, ptr %B, i32 %idx3
+ store double 84.0, ptr %arrayidx3
br label %inc3
inc3: