mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
cadc42dbdb
commit
c94b5e7fb5
|
|
@ -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>
|
2004-10-11 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
* config/s390/s390.c (s390_trampoline_template): Generate shorter
|
* config/s390/s390.c (s390_trampoline_template): Generate shorter
|
||||||
|
|
|
||||||
|
|
@ -533,7 +533,6 @@ insert_slot_to_list (struct temp_slot *temp, struct temp_slot **list)
|
||||||
static struct temp_slot **
|
static struct temp_slot **
|
||||||
temp_slots_at_level (int level)
|
temp_slots_at_level (int level)
|
||||||
{
|
{
|
||||||
level++;
|
|
||||||
|
|
||||||
if (!used_temp_slots)
|
if (!used_temp_slots)
|
||||||
VARRAY_GENERIC_PTR_INIT (used_temp_slots, 3, "used_temp_slots");
|
VARRAY_GENERIC_PTR_INIT (used_temp_slots, 3, "used_temp_slots");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue