cfg.c (dump_flow_info): Use max_reg_num () to determine the largest pseudo register number plus 1.

* cfg.c (dump_flow_info): Use max_reg_num () to determine the largest
	pseudo register number plus 1.

From-SVN: r59669
This commit is contained in:
John David Anglin 2002-12-01 03:52:04 +00:00 committed by John David Anglin
parent c17707f1d1
commit f6318a2baf
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-11-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
* cfg.c (dump_flow_info): Use max_reg_num () to determine the largest
pseudo register number plus 1.
2002-11-29 Hans-Peter Nilsson <hp@bitrange.com>
* cpplib.c (_cpp_test_assertion): Default *value to 0.

View File

@ -502,6 +502,7 @@ dump_flow_info (file)
FILE *file;
{
int i;
int max_regno = max_reg_num ();
basic_block bb;
static const char * const reg_class_names[] = REG_CLASS_NAMES;