summaryrefslogtreecommitdiff
path: root/polly/test/ScopInfo/simple_loop_unsigned.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopInfo/simple_loop_unsigned.ll')
-rw-r--r--polly/test/ScopInfo/simple_loop_unsigned.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/ScopInfo/simple_loop_unsigned.ll b/polly/test/ScopInfo/simple_loop_unsigned.ll
index 245c9f1e2c78..12903d9c1580 100644
--- a/polly/test/ScopInfo/simple_loop_unsigned.ll
+++ b/polly/test/ScopInfo/simple_loop_unsigned.ll
@@ -17,14 +17,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 [ 0, %entry ], [ %i.inc, %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.inc = add nsw i64 %i, 1
%exitcond = icmp uge i64 %i.inc, %N
br i1 %exitcond, label %return, label %bb