summaryrefslogtreecommitdiff
path: root/polly/test/ScopDetect/simple_loop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopDetect/simple_loop.ll')
-rw-r--r--polly/test/ScopDetect/simple_loop.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/ScopDetect/simple_loop.ll b/polly/test/ScopDetect/simple_loop.ll
index 1cb310f77f6c..c8ed89a97d00 100644
--- a/polly/test/ScopDetect/simple_loop.ll
+++ b/polly/test/ScopDetect/simple_loop.ll
@@ -8,15 +8,15 @@
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* %A, i64 %N) nounwind {
+define void @f(ptr %A, i64 %N) nounwind {
entry:
fence seq_cst
br label %for.i
for.i:
%indvar = phi i64 [ 0, %entry ], [ %indvar.next, %for.i ]
- %scevgep = getelementptr i64, i64* %A, i64 %indvar
- store i64 %indvar, i64* %scevgep
+ %scevgep = getelementptr i64, ptr %A, i64 %indvar
+ store i64 %indvar, ptr %scevgep
%indvar.next = add nsw i64 %indvar, 1
%exitcond = icmp eq i64 %indvar.next, %N
br i1 %exitcond, label %return, label %for.i