re PR middle-end/16266 (gcc.dg/c99-intconst-1.c compilation is very slow)

2004-10-11  Andrew Pinski  <pinskia@physics.uc.edu

        PR middle-end/16266
        * function.c (temp_slots_at_level): Fix typo which creates too
        many temp stack slots levels.

From-SVN: r88896
This commit is contained in:
Andrew Pinski 2004-10-11 11:32:40 -07:00 committed by Andrew Pinski
parent cadc42dbdb
commit c94b5e7fb5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-10-11 Andrew Pinski <pinskia@physics.uc.edu
PR middle-end/16266
* function.c (temp_slots_at_level): Fix typo which creates too
many temp stack slots levels.
2004-10-11 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_trampoline_template): Generate shorter

View File

@ -533,7 +533,6 @@ insert_slot_to_list (struct temp_slot *temp, struct temp_slot **list)
static struct temp_slot **
temp_slots_at_level (int level)
{
level++;
if (!used_temp_slots)
VARRAY_GENERIC_PTR_INIT (used_temp_slots, 3, "used_temp_slots");