aboutsummaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorAndrew MacLeod <amacleod@cygnus.com>1999-09-22 15:44:57 +0000
committerAndrew Macleod <amacleod@gcc.gnu.org>1999-09-22 15:44:57 +0000
commitc7d04f295cd2e9486b51b4b66a18aebb86aaea59 (patch)
tree4105918600101d072d0f8cd5bcfe79758acedfcd /gcc/flow.c
parent2051eea16f601ba41fc8082d038a1869eecf6b09 (diff)
downloadgcc-c7d04f295cd2e9486b51b4b66a18aebb86aaea59.zip
gcc-c7d04f295cd2e9486b51b4b66a18aebb86aaea59.tar.gz
gcc-c7d04f295cd2e9486b51b4b66a18aebb86aaea59.tar.bz2
basic-block.h (add_noreturn_fake_exit_edges): Use correct name.
Wed Sep 22 11:34:08 EDT 1999 Andrew MacLeod <amacleod@cygnus.com> * basic-block.h (add_noreturn_fake_exit_edges): Use correct name. * flow.c (remove_edge): Remove extra whitespace. (remove_fake_edges): Fix comment. (add_noreturn_fake_exit_edges): Use the correct name. From-SVN: r29592
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index 98a8ae3..4a4923c 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -6930,7 +6930,6 @@ remove_edge (e)
dest->pred = e->pred_next;
free (e);
-
}
/* This routine will remove any fake successor edges for a basic block.
@@ -6966,7 +6965,7 @@ remove_fake_edges ()
bb = BASIC_BLOCK (x);
remove_fake_successors (bb);
}
- /* we've handled all successors except the entry block's. */
+ /* We've handled all successors except the entry block's. */
remove_fake_successors (ENTRY_BLOCK_PTR);
}
@@ -6974,7 +6973,7 @@ remove_fake_edges ()
successors, and the exit block. Some data flow equations require these
edges to exist. */
void
-add_fake_exit_edges ()
+add_noreturn_fake_exit_edges ()
{
int x;