Commit c7d04f29 by Andrew MacLeod Committed by Andrew Macleod

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
parent 2051eea1
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> Wed Sep 22 16:12:40 BST 1999 Nathan Sidwell <nathan@acm.org>
* Makefile.in (INTL_MOSTLYCLEAN, INTL_CLEAN): New variables. * Makefile.in (INTL_MOSTLYCLEAN, INTL_CLEAN): New variables.
......
...@@ -248,7 +248,7 @@ extern basic_block split_edge PROTO ((edge)); ...@@ -248,7 +248,7 @@ extern basic_block split_edge PROTO ((edge));
extern void insert_insn_on_edge PROTO ((rtx, edge)); extern void insert_insn_on_edge PROTO ((rtx, edge));
extern void commit_edge_insertions PROTO ((void)); extern void commit_edge_insertions PROTO ((void));
extern void remove_fake_edges 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. */ /* This structure maintains an edge list vector. */
struct edge_list struct edge_list
......
...@@ -6930,7 +6930,6 @@ remove_edge (e) ...@@ -6930,7 +6930,6 @@ remove_edge (e)
dest->pred = e->pred_next; dest->pred = e->pred_next;
free (e); free (e);
} }
/* This routine will remove any fake successor edges for a basic block. /* This routine will remove any fake successor edges for a basic block.
...@@ -6966,7 +6965,7 @@ remove_fake_edges () ...@@ -6966,7 +6965,7 @@ remove_fake_edges ()
bb = BASIC_BLOCK (x); bb = BASIC_BLOCK (x);
remove_fake_successors (bb); 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); remove_fake_successors (ENTRY_BLOCK_PTR);
} }
...@@ -6974,7 +6973,7 @@ remove_fake_edges () ...@@ -6974,7 +6973,7 @@ remove_fake_edges ()
successors, and the exit block. Some data flow equations require these successors, and the exit block. Some data flow equations require these
edges to exist. */ edges to exist. */
void void
add_fake_exit_edges () add_noreturn_fake_exit_edges ()
{ {
int x; int x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment