basic-block.h (add_noreturn_fake_exit_edges): Use correct name.
authorAndrew MacLeod <amacleod@cygnus.com>
Wed, 22 Sep 1999 15:44:57 +0000 (15:44 +0000)
committerAndrew Macleod <amacleod@gcc.gnu.org>
Wed, 22 Sep 1999 15:44:57 +0000 (15:44 +0000)
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

gcc/ChangeLog
gcc/basic-block.h
gcc/flow.c

index 759a21efc7ee064451b3e600a89475a9a3141d70..2bb3da4aeffeb99e3f58030a1de183779bb70a8d 100644 (file)
@@ -1,3 +1,10 @@
+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.
+
 Wed Sep 22 16:12:40 BST 1999  Nathan Sidwell  <nathan@acm.org>
 
        * Makefile.in (INTL_MOSTLYCLEAN, INTL_CLEAN): New variables.
index 13f8c47e080c9f9d4f4c8b0a18fa3031ee4a3bf3..4721757e4b6c01754040c9d8752ee5c49efed2e1 100644 (file)
@@ -248,7 +248,7 @@ extern basic_block split_edge               PROTO ((edge));
 extern void insert_insn_on_edge                PROTO ((rtx, edge));
 extern void commit_edge_insertions     PROTO ((void));
 extern void remove_fake_edges          PROTO ((void));
-extern void add_fake_exit_edges                PROTO ((void));
+extern void add_noreturn_fake_exit_edges       PROTO ((void));
 
 /* This structure maintains an edge list vector.  */
 struct edge_list 
index 98a8ae3306367c9d9a8e2a8fa03c990741c95e35..4a4923cc257ab9f15e030608d17668a09723f411 100644 (file)
@@ -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;