summaryrefslogtreecommitdiff
path: root/polly/test/Simplify/notredundant_region_loop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/Simplify/notredundant_region_loop.ll')
-rw-r--r--polly/test/Simplify/notredundant_region_loop.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/Simplify/notredundant_region_loop.ll b/polly/test/Simplify/notredundant_region_loop.ll
index 7b4f5e98e4bc..0ea9be7e9d2d 100644
--- a/polly/test/Simplify/notredundant_region_loop.ll
+++ b/polly/test/Simplify/notredundant_region_loop.ll
@@ -3,7 +3,7 @@
; Do not remove the store in region_entry. It can be executed multiple times
; due to being part of a non-affine loop.
;
-define void @notredundant_region_loop(i32 %n, double* noalias nonnull %A) {
+define void @notredundant_region_loop(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -18,13 +18,13 @@ for:
br label %region_entry
region_entry:
- store double %val, double* %A
+ store double %val, ptr %A
%sqr = mul i32 %j, %j
%cmp = icmp eq i32 %sqr, 42
br i1 %cmp, label %region_true, label %region_exit
region_true:
- store double 0.0, double* %A
+ store double 0.0, ptr %A
br label %region_entry
region_exit: