diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-10-11 11:32:40 -0700 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-10-11 11:32:40 -0700 |
commit | c94b5e7fb5a8b1284e44a6edee6ad35635a0188f (patch) | |
tree | 34e275858dec4c44d317a59fc100b4edf0d15b88 /gcc/function.c | |
parent | cadc42dbdb454406e4a7094ff9445d69d5bc9c1d (diff) | |
download | gcc-c94b5e7fb5a8b1284e44a6edee6ad35635a0188f.tar.gz |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index f583d29b969..a8bd0f5b5fd 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"); |