diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/function.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cd177e6..5801fd5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/function.c b/gcc/function.c index f583d29..a8bd0f5 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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"); |