summaryrefslogtreecommitdiff
path: root/polly/test/ForwardOpTree/noforward_sideffects.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ForwardOpTree/noforward_sideffects.ll')
-rw-r--r--polly/test/ForwardOpTree/noforward_sideffects.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/test/ForwardOpTree/noforward_sideffects.ll b/polly/test/ForwardOpTree/noforward_sideffects.ll
index 4afbcd759bc5..a5633769f670 100644
--- a/polly/test/ForwardOpTree/noforward_sideffects.ll
+++ b/polly/test/ForwardOpTree/noforward_sideffects.ll
@@ -10,9 +10,9 @@
; A[0] = val;
; }
;
-declare double @f(double* %A) #1
+declare double @f(ptr %A) #1
-define void @func(i32 %n, double* noalias nonnull %A) {
+define void @func(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -22,11 +22,11 @@ for:
br i1 %j.cmp, label %bodyA, label %exit
bodyA:
- %val = call double (double*) @f(double* %A)
+ %val = call double (ptr) @f(ptr %A)
br label %bodyB
bodyB:
- store double %val, double* %A
+ store double %val, ptr %A
br label %inc
inc: