summaryrefslogtreecommitdiff
path: root/polly/test/ForwardOpTree/noforward_from_region.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ForwardOpTree/noforward_from_region.ll')
-rw-r--r--polly/test/ForwardOpTree/noforward_from_region.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/test/ForwardOpTree/noforward_from_region.ll b/polly/test/ForwardOpTree/noforward_from_region.ll
index 7abc65ab196f..30150912f32e 100644
--- a/polly/test/ForwardOpTree/noforward_from_region.ll
+++ b/polly/test/ForwardOpTree/noforward_from_region.ll
@@ -17,7 +17,7 @@
; A[0] = val;
; }
;
-define void @func(i32 %n, double* noalias nonnull %A) {
+define void @func(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -27,16 +27,16 @@ for:
br i1 %j.cmp, label %bodyA, label %exit
bodyA:
- %val = load double, double* %A
+ %val = load double, ptr %A
%cond = fcmp oeq double 21.0, 21.0
br i1 %cond, label %bodyA_true, label %bodyB
bodyA_true:
- store double 42.0, double* %A
+ store double 42.0, ptr %A
br label %bodyB
bodyB:
- store double %val, double* %A
+ store double %val, ptr %A
br label %bodyB_exit
bodyB_exit: