diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-15 08:09:51 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-15 08:09:51 -0500 |
commit | adcd38c9582b51dac858e4823460c20789a9d4c0 (patch) | |
tree | 790fbd39082b05f32313634c08d3aa9cc313580a /gcc | |
parent | bc0ebdf9ee04dc9af3f893e0380852b54ac94164 (diff) | |
download | gcc-adcd38c9582b51dac858e4823460c20789a9d4c0.zip gcc-adcd38c9582b51dac858e4823460c20789a9d4c0.tar.gz gcc-adcd38c9582b51dac858e4823460c20789a9d4c0.tar.bz2 |
(rest_of_compilation): Call init_temp_slots.
From-SVN: r10734
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 5bad6b4b..db70772 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -3273,6 +3273,10 @@ rest_of_compilation (decl) resume_temporary_allocation (); + /* Show no temporary slots allocated. */ + + init_temp_slots (); + /* The parsing time is all the time spent in yyparse *except* what is spent in this function. */ |