summaryrefslogtreecommitdiff
path: root/polly/test/ScopInfo/simple_loop_unsigned_2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopInfo/simple_loop_unsigned_2.ll')
-rw-r--r--polly/test/ScopInfo/simple_loop_unsigned_2.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/ScopInfo/simple_loop_unsigned_2.ll b/polly/test/ScopInfo/simple_loop_unsigned_2.ll
index 9cd43ad97299..1379180a6dd9 100644
--- a/polly/test/ScopInfo/simple_loop_unsigned_2.ll
+++ b/polly/test/ScopInfo/simple_loop_unsigned_2.ll
@@ -10,14 +10,14 @@
;
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
-define void @f(i64* nocapture %a, i64 %N) nounwind {
+define void @f(ptr nocapture %a, i64 %N) nounwind {
entry:
br label %bb
bb: ; preds = %bb, %entry
%i = phi i64 [ %N, %entry ], [ %i.dec, %bb ]
- %scevgep = getelementptr inbounds i64, i64* %a, i64 %i
- store i64 %i, i64* %scevgep
+ %scevgep = getelementptr inbounds i64, ptr %a, i64 %i
+ store i64 %i, ptr %scevgep
%i.dec = add nsw i64 %i, -1
%exitcond = icmp ugt i64 %i.dec, 0
br i1 %exitcond, label %bb, label %return