summaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-21 18:24:42 +0000
committerbernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4>2000-11-21 18:24:42 +0000
commit719f8b961395d58a46fe7a1943b5ad84f3c91b97 (patch)
tree0913464a1a9ecbc93c4ce65df7c7a2820085f4b4 /gcc/loop.c
parent4549817dc71e25d9dda4227dc8ba8b862756ecf2 (diff)
downloadgcc-719f8b961395d58a46fe7a1943b5ad84f3c91b97.tar.gz
Fix consec_sets_giv bug.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index 267c4691afc..a514d051113 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -6203,8 +6203,12 @@ consec_sets_giv (loop, first_benefit, p, src_reg, dest_reg,
general_induction_var below, so we can allocate it on our stack.
If this is a giv, our caller will replace the induct var entry with
a new induction structure. */
- struct induction *v
- = (struct induction *) alloca (sizeof (struct induction));
+ struct induction *v;
+
+ if (REG_IV_TYPE (ivs, REGNO (dest_reg)) != UNKNOWN_INDUCT)
+ return 0;
+
+ v = (struct induction *) alloca (sizeof (struct induction));
v->src_reg = src_reg;
v->mult_val = *mult_val;
v->add_val = *add_val;
@@ -6265,6 +6269,7 @@ consec_sets_giv (loop, first_benefit, p, src_reg, dest_reg,
}
}
+ REG_IV_TYPE (ivs, REGNO (dest_reg)) = UNKNOWN_INDUCT;
*last_consec_insn = p;
return v->benefit;
}