diff options
author | Richard Henderson <rth@redhat.com> | 2004-06-30 17:38:38 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-06-30 17:38:38 -0700 |
commit | 6a0bec2ce1817d8cb78a4a9c1729855382d412cd (patch) | |
tree | 11be711913612228df3a6979d2909f5aa10224d3 /gcc/function.c | |
parent | 1730c8f5a7e5dfdbb208ce8ae60b7630d1bb5bc4 (diff) | |
download | gcc-6a0bec2ce1817d8cb78a4a9c1729855382d412cd.zip gcc-6a0bec2ce1817d8cb78a4a9c1729855382d412cd.tar.gz gcc-6a0bec2ce1817d8cb78a4a9c1729855382d412cd.tar.bz2 |
tree.h (immediate_size_expand): Delete.
* tree.h (immediate_size_expand): Delete.
* stor-layout.c (immediate_size_expand): Delete.
(variable_size): Don't look at it.
* c-decl.c (push_parm_decl): Don't frob immediate_size_expand.
(start_function): Likewise.
* cfgexpand.c (construct_exit_block): Likewise.
* function.c (init_function_start, expand_function_end): Likewise.
* tree-optimize.c (tree_rest_of_compilation): Likewise.
cp/
* decl.c (start_preparsed_function): Don't set immediate_size_expand.
* method.c (use_thunk): Likewise.
fortran/
* trans-decl.c (gfc_generate_function_code): Don't set
immediate_size_expand.
(gfc_generate_constructors): Likewise.
From-SVN: r83946
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc/function.c b/gcc/function.c index faa77d9..f6c73a64 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6288,9 +6288,6 @@ init_function_start (tree subr) { prepare_function_start (subr); - /* Within function body, compute a type's size as soon it is laid out. */ - immediate_size_expand++; - /* Prevent ever trying to delete the first instruction of a function. Also tell final how to output a linenum before the function prologue. Note linenums could be missing, e.g. when @@ -6709,10 +6706,6 @@ expand_function_end (void) while (in_sequence_p ()) end_sequence (); - /* Outside function body, can't compute type's actual size - until next function's body starts. */ - immediate_size_expand--; - clear_pending_stack_adjust (); do_pending_stack_adjust (); |