diff options
author | Richard Henderson <rth@cygnus.com> | 2000-01-28 14:22:50 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-01-28 14:22:50 -0800 |
commit | 19d3c25c9a4da9526a2012b47d14bc731fd0422e (patch) | |
tree | 838b5c749cb462341ad1b64dc6cc0bd1daa6820f /gcc/reg-stack.c | |
parent | 47e6ea667d23d2fd20ad3664e39654cc8a44502f (diff) | |
download | gcc-19d3c25c9a4da9526a2012b47d14bc731fd0422e.zip gcc-19d3c25c9a4da9526a2012b47d14bc731fd0422e.tar.gz gcc-19d3c25c9a4da9526a2012b47d14bc731fd0422e.tar.bz2 |
flow.c (find_basic_blocks): Remove do_cleanup argument.
* flow.c (find_basic_blocks): Remove do_cleanup argument.
Break out that code ...
(cleanup_cfg): ... here.
(commit_one_edge_insertion): Detect a return instruction being
emitted to an edge. Emit a barrier following; clear fallthru.
(commit_edge_insertions): Verify CFG consistency.
* function.c (expand_function_start): Kill unused variable.
(expand_function_end): Likewise.
(thread_prologue_and_epilogue_insns): Use insert_insn_on_edge
to insert the epilogue.
* gcse.c (gcse_main): Adjust for find_basic_blocks change.
(delete_null_pointer_checks): Likewise.
* output.h: Likewise.
* reg-stack.c (reg_to_stack): Likewise.
* toplev.c (rest_of_compilation): Likewise. Run
thread_prologue_and_epilogue_insns after rebuilding the CFG.
From-SVN: r31676
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 2edd579..ab27407 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -430,7 +430,7 @@ reg_to_stack (first, file) /* Ok, floating point instructions exist. If not optimizing, build the CFG and run life analysis. */ - find_basic_blocks (first, max_reg_num (), file, 0); + find_basic_blocks (first, max_reg_num (), file); count_or_remove_death_notes (NULL, 1); life_analysis (first, max_reg_num (), file, 0); |