OSDN Git Service

Wed Sep 22 11:34:08 EDT 1999 Andrew MacLeod <amacleod@cygnus.com>
authoramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Sep 1999 15:44:57 +0000 (15:44 +0000)
committeramacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Sep 1999 15:44:57 +0000 (15:44 +0000)
* 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

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

index 759a21e..2bb3da4 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 13f8c47..4721757 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 98a8ae3..4a4923c 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;