Commit 7f6dae2a by Geoff Keating Committed by Jeff Law

loop.c (basic_induction_var): A non-integer variable which is being set by a…

loop.c (basic_induction_var): A non-integer variable which is being set by a paradoxical subreg is probably...

        * loop.c (basic_induction_var): A non-integer variable which is
        being set by a paradoxical subreg is probably not a biv.

From-SVN: r30181
parent 7146dfdd
Mon Oct 25 23:54:45 1999 Geoff Keating <geoffk@cygnus.com>
* loop.c (basic_induction_var): A non-integer variable which is
being set by a paradoxical subreg is probably not a biv.
1999-10-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl> 1999-10-25 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* prefix.c (translate_name) Check for empty prefix string. * prefix.c (translate_name) Check for empty prefix string.
......
...@@ -6118,6 +6118,8 @@ basic_induction_var (x, mode, dest_reg, p, inc_val, mult_val, location) ...@@ -6118,6 +6118,8 @@ basic_induction_var (x, mode, dest_reg, p, inc_val, mult_val, location)
|| (GET_CODE (SET_DEST (set)) == SUBREG || (GET_CODE (SET_DEST (set)) == SUBREG
&& (GET_MODE_SIZE (GET_MODE (SET_DEST (set))) && (GET_MODE_SIZE (GET_MODE (SET_DEST (set)))
<= UNITS_PER_WORD) <= UNITS_PER_WORD)
&& (GET_MODE_CLASS (GET_MODE (SET_DEST (set)))
== MODE_INT)
&& SUBREG_REG (SET_DEST (set)) == x)) && SUBREG_REG (SET_DEST (set)) == x))
&& basic_induction_var (SET_SRC (set), && basic_induction_var (SET_SRC (set),
(GET_MODE (SET_SRC (set)) == VOIDmode (GET_MODE (SET_SRC (set)) == VOIDmode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment