diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2004-11-29 20:46:14 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-11-29 20:46:14 +0000 |
commit | 6be85b25c2fadc5c1912f4e664d075fa08fa3e15 (patch) | |
tree | 19ff7e4a9275ba4b32556d6dcb4edd68c18e5bf5 /gcc/cfgcleanup.c | |
parent | 5e23162d1a2ebf9f9a765f5d8c1c8a1b99a3dfa2 (diff) | |
download | gcc-6be85b25c2fadc5c1912f4e664d075fa08fa3e15.zip gcc-6be85b25c2fadc5c1912f4e664d075fa08fa3e15.tar.gz gcc-6be85b25c2fadc5c1912f4e664d075fa08fa3e15.tar.bz2 |
cfgcleanup.c (outgoing_edges_match, [...]): Remove CASE_DROPS_THROUGH checks, it is never defined.
* cfgcleanup.c (outgoing_edges_match, try_crossjump_to_edge):
Remove CASE_DROPS_THROUGH checks, it is never defined.
* cfglyout.c (fixup_reorder_chain): Likewise.
* cfgrtl.c (rtl_verify_flow_info): Likewise.
* stmt.c (expand_case): Likewise.
* cfgbuild.c (make_edges): Likewise. Also remove force_fallthru,
it is now always 0.
* system.h (CASE_DROPS_THROUGH): Poison.
* doc/md.texi (casesi): Remove documentation of CASE_DROPS_THROUGH.
* doc/tm.texi (casesi): Remove documentation of CASE_DROPS_THROUGH.
* config/v850/v850.h: Remove commented out CASE_DROPS_THROUGH.
From-SVN: r91488
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r-- | gcc/cfgcleanup.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 373be91..1cb3f2e 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -1353,7 +1353,6 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2) /* Generic case - we are seeing a computed jump, table jump or trapping instruction. */ -#ifndef CASE_DROPS_THROUGH /* Check whether there are tablejumps in the end of BB1 and BB2. Return true if they are identical. */ { @@ -1427,7 +1426,6 @@ outgoing_edges_match (int mode, basic_block bb1, basic_block bb2) return false; } } -#endif /* First ensure that the instructions match. There may be many outgoing edges so this test is generally cheaper. */ @@ -1565,7 +1563,6 @@ try_crossjump_to_edge (int mode, edge e1, edge e2) && (newpos1 != BB_HEAD (src1))) return false; -#ifndef CASE_DROPS_THROUGH /* Here we know that the insns in the end of SRC1 which are common with SRC2 will be deleted. If we have tablejumps in the end of SRC1 and SRC2 @@ -1596,7 +1593,6 @@ try_crossjump_to_edge (int mode, edge e1, edge e2) } } } -#endif /* Avoid splitting if possible. */ if (newpos2 == BB_HEAD (src2)) |