summaryrefslogtreecommitdiff
path: root/polly/test/Simplify/ununsed_read_in_region_entry.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/Simplify/ununsed_read_in_region_entry.ll')
-rw-r--r--polly/test/Simplify/ununsed_read_in_region_entry.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/Simplify/ununsed_read_in_region_entry.ll b/polly/test/Simplify/ununsed_read_in_region_entry.ll
index 66d67f43e0e6..9b2d4521e2d6 100644
--- a/polly/test/Simplify/ununsed_read_in_region_entry.ll
+++ b/polly/test/Simplify/ununsed_read_in_region_entry.ll
@@ -7,7 +7,7 @@
; B[0] = 42.0;
; }
;
-define void @func(i32 %n, double* noalias nonnull %A, double* noalias nonnull %B) {
+define void @func(i32 %n, ptr noalias nonnull %A, ptr noalias nonnull %B) {
entry:
br label %for
@@ -18,12 +18,12 @@ for:
region_entry:
- %val = load double, double* %A
+ %val = load double, ptr %A
%cmp = fcmp oeq double 21.0, 0.0
br i1 %cmp, label %region_true, label %region_exit
region_true:
- store double 42.0, double* %B
+ store double 42.0, ptr %B
br label %region_exit
region_exit: