aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2002-03-29 22:36:56 +0000
committerRichard Henderson <rth@gcc.gnu.org>2002-03-29 14:36:56 -0800
commit02a566dcf0d6b8055a34e7d771840c43fde3aba5 (patch)
tree0f6e17e6827fb1922e8bc963f507e8a266753a48
parent5bebbee7338bb2f91e0348a9d963ee85ecabfb9a (diff)
downloadgcc-02a566dcf0d6b8055a34e7d771840c43fde3aba5.zip
gcc-02a566dcf0d6b8055a34e7d771840c43fde3aba5.tar.gz
gcc-02a566dcf0d6b8055a34e7d771840c43fde3aba5.tar.bz2
* loop.c (combine_movables): Do allow combination of pseudos.
From-SVN: r51581
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/loop.c9
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b5309a2..3d0da36 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2002-03-29 Dale Johannesen <dalej@apple.com>
+
+ * loop.c (combine_movables): Do allow combination of pseudos.
+
2002-03-29 Loren J. Rittle <ljrittle@acm.org>
* config.gcc (*-*-freebsd*): Enable creation of libgcc_s.so.
diff --git a/gcc/loop.c b/gcc/loop.c
index 6617608..99281d0 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -1446,10 +1446,13 @@ combine_movables (movables, regs)
/* Regs that are set more than once are not allowed to match
or be matched. I'm no longer sure why not. */
+ /* Only pseudo registers are allowed to match or be matched,
+ since move_movables does not validate the change. */
/* Perhaps testing m->consec_sets would be more appropriate here? */
for (m = movables->head; m; m = m->next)
if (m->match == 0 && regs->array[m->regno].n_times_set == 1
+ && m->regno >= FIRST_PSEUDO_REGISTER
&& !m->partial)
{
struct movable *m1;
@@ -1461,11 +1464,9 @@ combine_movables (movables, regs)
/* We want later insns to match the first one. Don't make the first
one match any later ones. So start this loop at m->next. */
for (m1 = m->next; m1; m1 = m1->next)
- /* ??? HACK! move_movables does not verify that the replacement
- is valid, which can have disasterous effects with hard regs
- and match_dup. Turn combination off for now. */
- if (0 && m != m1 && m1->match == 0
+ if (m != m1 && m1->match == 0
&& regs->array[m1->regno].n_times_set == 1
+ && m1->regno >= FIRST_PSEUDO_REGISTER
/* A reg used outside the loop mustn't be eliminated. */
&& !m1->global
/* A reg used for zero-extending mustn't be eliminated. */