diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-03-08 12:56:07 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-03-08 12:56:07 -0800 |
commit | 2fe204da02529a9a1449fd5c32df6e412fe2d0eb (patch) | |
tree | 26946f93277ade79e1be5f13a37ad53b321540c3 /gcc | |
parent | 0a3732d1de84ce4e80940678f7b703d46870feea (diff) | |
download | gcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.zip gcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.tar.gz gcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.tar.bz2 |
(write_vtable_entries, finish_file): Likewise.
From-SVN: r6728
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/decl2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 201dcf7..db45577 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -2385,7 +2385,7 @@ write_vtable_entries (decl) TREE_ADDRESSABLE (fn) = 1; temporary_allocation (); output_inline_function (fn); - permanent_allocation (); + permanent_allocation (1); } else assemble_external (fn); @@ -2763,7 +2763,7 @@ finish_file () { temporary_allocation (); output_inline_function (decl); - permanent_allocation (); + permanent_allocation (1); } pending_addressable_inlines = TREE_CHAIN (pending_addressable_inlines); } @@ -2813,7 +2813,7 @@ finish_file () } } - permanent_allocation (); + permanent_allocation (1); this_time = get_run_time (); parse_time -= this_time - start_time; varconst_time += this_time - start_time; |