* cfg.c (dump_flow_info): Don't dump pseudo info after reload.

From-SVN: r92081
This commit is contained in:
Richard Henderson 2004-12-13 02:45:07 -08:00 committed by Richard Henderson
parent 9a9286af3c
commit 57d52c8111
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-12-13 Richard Henderson <rth@redhat.com>
* cfg.c (dump_flow_info): Don't dump pseudo info after reload.
2004-12-13 Richard Henderson <rth@redhat.com>
* Makefile.in (insn-preds.o): Depend on REGS_H.

View File

@ -517,7 +517,8 @@ dump_flow_info (FILE *file)
basic_block bb;
static const char * const reg_class_names[] = REG_CLASS_NAMES;
if (reg_n_info)
/* There are no pseudo registers after reload. Don't dump them. */
if (reg_n_info && !reload_completed)
{
int max_regno = max_reg_num ();
fprintf (file, "%d registers.\n", max_regno);