aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-03-08 12:56:07 -0800
committerJim Wilson <wilson@gcc.gnu.org>1994-03-08 12:56:07 -0800
commit2fe204da02529a9a1449fd5c32df6e412fe2d0eb (patch)
tree26946f93277ade79e1be5f13a37ad53b321540c3
parent0a3732d1de84ce4e80940678f7b703d46870feea (diff)
downloadgcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.zip
gcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.tar.gz
gcc-2fe204da02529a9a1449fd5c32df6e412fe2d0eb.tar.bz2
(write_vtable_entries, finish_file): Likewise.
From-SVN: r6728
-rw-r--r--gcc/cp/decl2.c6
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;