summaryrefslogtreecommitdiff
path: root/polly/test/ScopInfo/cond_constant_in_loop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopInfo/cond_constant_in_loop.ll')
-rw-r--r--polly/test/ScopInfo/cond_constant_in_loop.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/polly/test/ScopInfo/cond_constant_in_loop.ll b/polly/test/ScopInfo/cond_constant_in_loop.ll
index 62bcecae77d3..ef7d857e1084 100644
--- a/polly/test/ScopInfo/cond_constant_in_loop.ll
+++ b/polly/test/ScopInfo/cond_constant_in_loop.ll
@@ -13,25 +13,25 @@
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, i64 %M) nounwind {
+define void @f(ptr nocapture %a, i64 %N, i64 %M) nounwind {
entry:
%0 = icmp sgt i64 %M, 0 ; <i1> [#uses=1]
br i1 %0, label %bb, label %return
bb: ; preds = %bb3, %entry
%1 = phi i64 [ 0, %entry ], [ %2, %bb3 ] ; <i64> [#uses=5]
- %scevgep = getelementptr i64, i64* %a, i64 %1 ; <i64*> [#uses=2]
+ %scevgep = getelementptr i64, ptr %a, i64 %1 ; <ptr> [#uses=2]
br i1 true, label %bb1, label %bb2
bb1: ; preds = %bb
- store i64 %1, i64* %scevgep, align 8
+ store i64 %1, ptr %scevgep, align 8
br label %bb3
bb2: ; preds = %bb
%tmp7 = sub i64 %1, %N ; <i64> [#uses=1]
- %scevgep8 = getelementptr i64, i64* %a, i64 %tmp7 ; <i64*> [#uses=1]
- store i64 %M, i64* %scevgep, align 8
- store i64 0, i64* %scevgep8, align 8
+ %scevgep8 = getelementptr i64, ptr %a, i64 %tmp7 ; <ptr> [#uses=1]
+ store i64 %M, ptr %scevgep, align 8
+ store i64 0, ptr %scevgep8, align 8
br label %bb3
bb3: ; preds = %bb2, %bb1