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
This commit is contained in:
Andrew MacLeod 1999-09-22 15:44:57 +00:00 committed by Andrew Macleod
parent 2051eea16f
commit c7d04f295c
3 changed files with 10 additions and 4 deletions

View 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.

View 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

View 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;