diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index 2b710b42aba..2cdcdd33e36 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6394,9 +6394,6 @@ allocate_struct_function (tree fndecl) init_stmt_for_function (); init_eh_for_function (); - init_emit (); - init_expr (); - init_varasm_status (cfun); (*lang_hooks.function.init) (cfun); if (init_machine_status) @@ -6434,6 +6431,9 @@ prepare_function_start (tree fndecl) cfun = DECL_SAVED_INSNS (fndecl); else allocate_struct_function (fndecl); + init_emit (); + init_varasm_status (cfun); + init_expr (); cse_not_expected = ! optimize; |