diff options
author | Andrew MacLeod <amacleod@cygnus.com> | 1999-09-22 15:44:57 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1999-09-22 15:44:57 +0000 |
commit | c7d04f295cd2e9486b51b4b66a18aebb86aaea59 (patch) | |
tree | 4105918600101d072d0f8cd5bcfe79758acedfcd /gcc/flow.c | |
parent | 2051eea16f601ba41fc8082d038a1869eecf6b09 (diff) | |
download | gcc-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.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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; |