aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgexpand.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-03-07 13:56:00 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-03-07 13:56:00 +0000
commit12eff7b7bf15d868ca68ece6613d5c17ebc0c69d (patch)
tree40318d554a154beb13c6f80bd5976fb6400a0d62 /gcc/cfgexpand.c
parent6db31844ad5b459e9f5ad0e306676bba01ea589b (diff)
downloadgcc-12eff7b7bf15d868ca68ece6613d5c17ebc0c69d.zip
gcc-12eff7b7bf15d868ca68ece6613d5c17ebc0c69d.tar.gz
gcc-12eff7b7bf15d868ca68ece6613d5c17ebc0c69d.tar.bz2
cfgbuild.c (find_sub_basic_blocks): Remove.
* cfgbuild.c (find_sub_basic_blocks): Remove. * basic-block.h: Remove the corresponding prototype. * cfgexpand.c, cfgrtl.c: Don't mention find_sub_basic_blocks in comments. * doc/cfg.texi: Don't mention find_sub_basic_blocks. From-SVN: r96016
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r--gcc/cfgexpand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c
index ce26661..e339505 100644
--- a/gcc/cfgexpand.c
+++ b/gcc/cfgexpand.c
@@ -1003,7 +1003,7 @@ expand_gimple_tailcall (basic_block bb, tree stmt, bool *can_fallthru)
/* This is somewhat ugly: the call_expr expander often emits instructions
after the sibcall (to perform the function return). These confuse the
- find_sub_basic_blocks code, so we need to get rid of these. */
+ find_many_sub_basic_blocks code, so we need to get rid of these. */
last = NEXT_INSN (last);
gcc_assert (BARRIER_P (last));
@@ -1088,7 +1088,7 @@ expand_gimple_basic_block (basic_block bb, FILE * dump_file)
e->flags &= ~EDGE_EXECUTABLE;
/* At the moment not all abnormal edges match the RTL representation.
- It is safe to remove them here as find_sub_basic_blocks will
+ It is safe to remove them here as find_many_sub_basic_blocks will
rediscover them. In the future we should get this fixed properly. */
if (e->flags & EDGE_ABNORMAL)
remove_edge (e);