summaryrefslogtreecommitdiff
path: root/polly/test/Simplify/redundant.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/Simplify/redundant.ll')
-rw-r--r--polly/test/Simplify/redundant.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/Simplify/redundant.ll b/polly/test/Simplify/redundant.ll
index a79a1e7b29b7..e85352bc889f 100644
--- a/polly/test/Simplify/redundant.ll
+++ b/polly/test/Simplify/redundant.ll
@@ -7,7 +7,7 @@
; for (int j = 0; j < n; j += 1)
; A[0] = A[0];
;
-define void @func(i32 %n, double* noalias nonnull %A) {
+define void @func(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -17,8 +17,8 @@ for:
br i1 %j.cmp, label %body, label %exit
body:
- %val = load double, double* %A
- store double %val, double* %A
+ %val = load double, ptr %A
+ store double %val, ptr %A
br label %inc
inc: