summaryrefslogtreecommitdiff
path: root/polly/test/Simplify/redundant_partialwrite.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/Simplify/redundant_partialwrite.ll')
-rw-r--r--polly/test/Simplify/redundant_partialwrite.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/Simplify/redundant_partialwrite.ll b/polly/test/Simplify/redundant_partialwrite.ll
index 7ead246a0afb..ac5ca907fff6 100644
--- a/polly/test/Simplify/redundant_partialwrite.ll
+++ b/polly/test/Simplify/redundant_partialwrite.ll
@@ -3,7 +3,7 @@
; Remove a redundant store, if its partial domain is a subset of the
; read's domain.
;
-define void @redundant_partialwrite(i32 %n, double* noalias nonnull %A) {
+define void @redundant_partialwrite(i32 %n, ptr noalias nonnull %A) {
entry:
br label %for
@@ -13,8 +13,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: