summaryrefslogtreecommitdiff
path: root/polly/test/Simplify/notredundant_region_middle.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/Simplify/notredundant_region_middle.ll')
-rw-r--r--polly/test/Simplify/notredundant_region_middle.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/polly/test/Simplify/notredundant_region_middle.ll b/polly/test/Simplify/notredundant_region_middle.ll
index 5258cb4801a7..84598746e0bb 100644
--- a/polly/test/Simplify/notredundant_region_middle.ll
+++ b/polly/test/Simplify/notredundant_region_middle.ll
@@ -13,7 +13,7 @@
; A[0] = 0.0;
; }
;
-define void @notredundant_region(i32 %n, double* noalias nonnull %A) {
+define void @notredundant_region(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -24,16 +24,16 @@ for:
region_entry:
- %val = load double, double* %A
+ %val = load double, ptr %A
%cmp = fcmp oeq double %val, 0.0
br i1 %cmp, label %region_true, label %region_false
region_true:
- store double %val, double* %A
+ store double %val, ptr %A
br label %region_exit
region_false:
- store double 0.0, double* %A
+ store double 0.0, ptr %A
br label %region_exit
region_exit: