]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR middle-end/16266 (gcc.dg/c99-intconst-1.c compilation is very slow)
authorAndrew Pinski <pinskia@physics.uc.edu>
Mon, 11 Oct 2004 18:32:40 +0000 (11:32 -0700)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Mon, 11 Oct 2004 18:32:40 +0000 (11:32 -0700)
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

gcc/ChangeLog
gcc/function.c

index cd177e63d1067a1eaf5d6d9b71e5ac88b0def0d8..5801fd542f9da14d3a2009a0a8842b71433f2d5a 100644 (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
index f583d29b969c52e487a921d301898a2116d5fb1d..a8bd0f5b5fd999fc26337695969e315fe68c1d29 100644 (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");