mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-23 18:11:15 +08:00
* cfg.c (dump_flow_info): Don't dump pseudo info after reload.
From-SVN: r92081
This commit is contained in:
parent
9a9286af3c
commit
57d52c8111
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user