diff options
author | Richard Henderson <rth@cygnus.com> | 2000-04-07 02:23:29 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-04-07 02:23:29 -0700 |
commit | a18820c64c3148a53112cb1f740d2b03a5c08538 (patch) | |
tree | 11b24e45dc8d9d1e3c4634bb9728e6215d582c0c /gcc/ssa.c | |
parent | dc108b7a752864a4d586d5c30325030b42d6c395 (diff) | |
download | gcc-a18820c64c3148a53112cb1f740d2b03a5c08538.zip gcc-a18820c64c3148a53112cb1f740d2b03a5c08538.tar.gz gcc-a18820c64c3148a53112cb1f740d2b03a5c08538.tar.bz2 |
gcse.c (gcse_main): Don't rebuild the CFG here.
* gcse.c (gcse_main): Don't rebuild the CFG here.
(delete_null_pointer_checks): Likewise.
* ssa.c (convert_to_ssa): Likewise.
* toplev.c (rest_of_compilation): Do it here instead. Combine
sequential calls to TIMEVAR. Consistently use `insns' instead of
`get_insns()'. Always split insns after reload when optimizing.
From-SVN: r32995
Diffstat (limited to 'gcc/ssa.c')
-rw-r--r-- | gcc/ssa.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -855,10 +855,6 @@ convert_to_ssa() if (in_ssa_form) abort (); - find_basic_blocks (get_insns (), max_reg_num(), NULL); - /* The dominator algorithms assume all blocks are reachable; clean - up first. */ - cleanup_cfg (get_insns ()); /* Don't eliminate dead code here. The CFG we computed above must remain unchanged until we are finished emerging from SSA form -- the phi node representation depends on it. */ @@ -930,8 +926,6 @@ convert_to_ssa() in_ssa_form = 1; reg_scan (get_insns (), max_reg_num (), 1); - find_basic_blocks (get_insns (), max_reg_num (), NULL); - life_analysis (get_insns (), max_reg_num (), NULL, 0); } @@ -1818,7 +1812,6 @@ convert_from_ssa() rtx insns = get_insns (); /* We need up-to-date life information. */ - find_basic_blocks (insns, max_reg_num (), NULL); life_analysis (insns, max_reg_num (), NULL, 0); /* Figure out which regs in copies and phi nodes don't conflict and |