aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfg.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-12-13 10:45:07 +0000
committerRichard Henderson <rth@redhat.com>2004-12-13 10:45:07 +0000
commita5073c905baa12c176fe1f63df7757c56466960f (patch)
tree4cdc04925cbd1bb62f52bedb9a8b0c12f9032253 /gcc/cfg.c
parente79ed9571b226fc472ef424b9ee0e08ff7b8ed31 (diff)
* cfg.c (dump_flow_info): Don't dump pseudo info after reload.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@92081 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r--gcc/cfg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c
index c469661edc0..b36a96f812d 100644
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -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);