summaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/non-affine-phi-node-expansion-3.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/non-affine-phi-node-expansion-3.ll')
-rw-r--r--polly/test/CodeGen/non-affine-phi-node-expansion-3.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/CodeGen/non-affine-phi-node-expansion-3.ll b/polly/test/CodeGen/non-affine-phi-node-expansion-3.ll
index 3296bff97012..18a4b6e4ed4a 100644
--- a/polly/test/CodeGen/non-affine-phi-node-expansion-3.ll
+++ b/polly/test/CodeGen/non-affine-phi-node-expansion-3.ll
@@ -1,7 +1,7 @@
; RUN: opt %loadPolly -polly-codegen \
; RUN: -S < %s | FileCheck %s
-define void @foo(float* %A, i1 %cond0, i1 %cond1) {
+define void @foo(ptr %A, i1 %cond0, i1 %cond1) {
entry:
br label %loop
@@ -36,7 +36,7 @@ branch2:
backedge:
%merge = phi float [%val0, %loop], [%val1, %branch1], [%val2, %branch2]
%indvar.next = add i64 %indvar, 1
- store float %merge, float* %A
+ store float %merge, ptr %A
%cmp = icmp sle i64 %indvar.next, 100
br i1 %cmp, label %loop, label %exit