diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-06-16 07:27:32 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-06-16 07:27:32 +0000 |
commit | 6bbba4c73c8a9540ac77a1ffffd618ce2be3ccf0 (patch) | |
tree | 8ed404d2b5fb9d37976b24202f506bb301830139 | |
parent | 2f8e398bf476a5b0682e6fdc0f8b64df1cf0347b (diff) | |
download | gcc-6bbba4c73c8a9540ac77a1ffffd618ce2be3ccf0.zip gcc-6bbba4c73c8a9540ac77a1ffffd618ce2be3ccf0.tar.gz gcc-6bbba4c73c8a9540ac77a1ffffd618ce2be3ccf0.tar.bz2 |
toplev.h (rest_of_compilation): Adjust prototype.
2004-06-16 Paolo Bonzini <bonzini@gnu.org>
* toplev.h (rest_of_compilation): Adjust prototype.
From-SVN: r83226
-rw-r--r-- | gcc/ChangeLog | 37 | ||||
-rw-r--r-- | gcc/toplev.h | 2 |
2 files changed, 38 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 027ff23..109df26 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,40 @@ +2004-06-16 Paolo Bonzini <bonzini@gnu.org> + + * toplev.h (rest_of_compilation): Adjust prototype. + +2004-06-16 Paolo Bonzini <bonzini@gnu.org> + + * coverage.c: Remove argument to rest_of_compilation. + * expr.c (execute_expand, set_save_expr_context, pass_expand): New. + * passes.c (rest_of_compilation): Remove argument. + (pass_rest_of_compilation): New. + (rest_of_handle_final, rest_of_handle_delay_slots, + rest_of_handle_stack_regs, rest_of_handle_variable_tracking + rest_of_handle_machine_reorg, rest_of_handle_regrename + rest_of_handle_sched, rest_of_handle_sched2, rest_of_handle_gcse2 + rest_of_handle_regmove, rest_of_handle_tracer + rest_of_handle_if_conversion, rest_of_handle_if_after_combine + rest_of_handle_web, rest_of_handle_branch_prob + rest_of_handle_value_profile_transformations, rest_of_handle_cfg + rest_of_handle_addressof, rest_of_handle_jump_bypass + rest_of_handle_life, rest_of_handle_cse, rest_of_handle_cse2): + Check that the two arguments are actually superfluous. + * tree-optimize.c (register_dump_files): Add properties argument. + Track validity of passes. Only initialize dump files for + tree-based passes. Store the full set of provided passes in + the pass. + (init_tree_optimization_passes): Register pass_expand and + pass_rest_of_compilation. + (execute_one_pass): Do not track the presence of required properties + here. Set in_gimple_form. Do not update current_properties. + (current_properties): Remove. + (set_save_expr_context): Remove. + (tree_rest_of_compilation): Do not set in_gimple_form. Do not + expand to RTL here, and do not call rest_of_compilation. Push + GGC context even before gimplification. + * tree-pass.h (PROP_rtl, PROP_trees): New flags. + (pass_expand, pass_rest_of_compilation): Declare. + 2004-06-15 Jeff Law <law@redhat.com> * fold-const.c (swap_tree_comparison): No longer static. diff --git a/gcc/toplev.h b/gcc/toplev.h index 6ff8c3b..1940252 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -66,7 +66,7 @@ extern void inform (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); extern void rest_of_decl_compilation (tree, const char *, int, int); extern void rest_of_type_compilation (tree, int); -extern void rest_of_compilation (tree); +extern void rest_of_compilation (void); extern void tree_rest_of_compilation (tree, bool); extern void init_tree_optimization_passes (void); extern void init_optimization_passes (void); |