cfgrtl.c (rtl_verify_flow_info_1): Remove local variable last_bb_seen.

* cfgrtl.c (rtl_verify_flow_info_1): Remove local variable
	last_bb_seen.

From-SVN: r96025
This commit is contained in:
Kazu Hirata 2005-03-07 15:16:03 +00:00 committed by Kazu Hirata
parent 50f63b1a67
commit 94eb5ddb83
2 changed files with 4 additions and 4 deletions

View File

@ -35,6 +35,9 @@
* cfghooks.c (verify_flow_info): Remove local variable
num_bb_notes.
* cfgrtl.c (rtl_verify_flow_info_1): Remove local variable
last_bb_seen.
2005-03-07 David Billinghurst <David.Billinghurst@riotinto.com>
* config/i386/cygwin1.c(mingw_scan): Use xstrdup in calls to putenv.

View File

@ -1926,13 +1926,10 @@ rtl_verify_flow_info_1 (void)
basic_block *bb_info;
rtx x;
int err = 0;
basic_block bb, last_bb_seen;
basic_block bb;
bb_info = xcalloc (max_uid, sizeof (basic_block));
/* Check bb chain & numbers. */
last_bb_seen = ENTRY_BLOCK_PTR;
FOR_EACH_BB_REVERSE (bb)
{
rtx head = BB_HEAD (bb);