summaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/split_edge_of_exit.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/split_edge_of_exit.ll')
-rw-r--r--polly/test/CodeGen/split_edge_of_exit.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/CodeGen/split_edge_of_exit.ll b/polly/test/CodeGen/split_edge_of_exit.ll
index 378775d06da2..56ce215a62b2 100644
--- a/polly/test/CodeGen/split_edge_of_exit.ll
+++ b/polly/test/CodeGen/split_edge_of_exit.ll
@@ -7,7 +7,7 @@
;
; CHECK: Valid Region for Scop: region2 => return
;
-define void @f1(i64* %A, i64 %N) nounwind {
+define void @f1(ptr %A, i64 %N) nounwind {
entry:
br label %region1
@@ -20,8 +20,8 @@ region1:
region2:
%indvar2 = phi i64 [ 0, %region1 ], [ %indvar2.next, %region2 ]
- %scevgep2 = getelementptr i64, i64* %A, i64 %indvar2
- store i64 %indvar2, i64* %scevgep2
+ %scevgep2 = getelementptr i64, ptr %A, i64 %indvar2
+ store i64 %indvar2, ptr %scevgep2
%indvar2.next = add nsw i64 %indvar2, 1
%exitcond2 = icmp eq i64 %indvar2.next, %N
br i1 %exitcond2, label %return, label %region2