summaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authoramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-22 15:44:57 +0000
committeramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-22 15:44:57 +0000
commit9061b5fb4128bb81bc7cca692ff1426ddbd7eaa3 (patch)
tree4105918600101d072d0f8cd5bcfe79758acedfcd /gcc/flow.c
parentc50e593099269e473dc4d8909003b1b7e8438c20 (diff)
downloadgcc-9061b5fb4128bb81bc7cca692ff1426ddbd7eaa3.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29592 138bc75d-0d04-0410-961f-82ee72b054a4
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 98a8ae33063..4a4923cc257 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;