* cse.c (insert_regs): Fix bug in Sep 24 change.

From-SVN: r22866
This commit is contained in:
J"orn Rennecke 1998-10-06 12:04:55 +00:00 committed by Joern Rennecke
parent b707b4509b
commit 37053d1fe5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Oct 6 20:02:31 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* cse.c (insert_regs): Fix bug in Sep 24 change.
Tue Oct 6 17:00:42 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* flags.h (flag_dump_unnumbered): Declare.

View File

@ -1113,7 +1113,7 @@ insert_regs (x, classp, modified)
will do the right thing. */
if (reg_in_table[regno] >= 0
&& reg_tick[regno] == reg_in_table[regno] + 1)
reg_tick++;
reg_tick[regno]++;
mention_regs (x);
return 1;
}