summaryrefslogtreecommitdiff
path: root/polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll')
-rw-r--r--polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll b/polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll
index 31180fc71411..5c5f264aab60 100644
--- a/polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll
+++ b/polly/test/ScopInfo/branch-references-loop-scev-with-unknown-iterations-2.ll
@@ -20,14 +20,14 @@
target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
target triple = "aarch64--linux-android"
-define void @f(i16 %event, float* %A) {
+define void @f(i16 %event, ptr %A) {
entry:
br label %loop
loop:
%indvar = phi i8 [ 0, %entry ], [ %indvar.next, %loop ]
%indvar.next = add i8 %indvar, -1
- store float 1.0, float* %A
+ store float 1.0, ptr %A
%cmp = icmp eq i8 %indvar.next, 0
br i1 false, label %barrier, label %loop
@@ -39,7 +39,7 @@ branch:
br i1 %cmp, label %branch, label %then
then:
- store float 1.0, float* %A
+ store float 1.0, ptr %A
br label %end
end: