diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 12:02:29 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 12:02:29 +0000 |
commit | 40734805198ef874623eb7be9ec3de9251c799b7 (patch) | |
tree | 8dfb059637bc4dfe3718b626a8be035328c2a665 /gcc/ssa-dce.c | |
parent | 1711184ff2dfbbd5aab7679d5e31159cd8d6d76d (diff) | |
download | gcc-40734805198ef874623eb7be9ec3de9251c799b7.tar.gz |
* sbitmap.c: Fix formatting.
* scan.c: Likewise.
* scan-decls.c: Likewise.
* sched-deps.c: Likewise.
* sched-ebb.c: Likewise.
* sched-rgn.c: Likewise.
* sched-vis.c: Likewise.
* sdbout.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* ssa-dce.c: Likewise.
* stmt.c: Likewise.
* stor-layout.c: Likewise.
* stringpool.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53324 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ssa-dce.c')
-rw-r--r-- | gcc/ssa-dce.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ssa-dce.c b/gcc/ssa-dce.c index 83b4e44bf80..45dcd659f00 100644 --- a/gcc/ssa-dce.c +++ b/gcc/ssa-dce.c @@ -370,7 +370,7 @@ find_inherently_necessary (x) return !0; else switch (GET_CODE (x)) - { + { case CALL_INSN: case BARRIER: case PREFETCH: @@ -691,7 +691,7 @@ ssa_eliminate_dead_code () remove_edge (temp); } - /* Create an edge from this block to the post dominator. + /* Create an edge from this block to the post dominator. What about the PHI nodes at the target? */ make_edge (bb, pdom_bb, 0); @@ -711,7 +711,7 @@ ssa_eliminate_dead_code () else if (!JUMP_P (insn)) delete_insn_bb (insn); }); - + /* Remove fake edges from the CFG. */ remove_fake_edges (); |