Commit 7d8405cf by Richard Henderson Committed by Richard Henderson

* cfg.c (dump_flow_info): Skip register dump if reg_n_info null.

From-SVN: r71485
parent dc5f3d7c
2003-09-17 Richard Henderson <rth@redhat.com>
* cfg.c (dump_flow_info): Skip register dump if reg_n_info null.
2003-09-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> 2003-09-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* configure.in (gcc_cv_ld_hidden): Don't test gnu_ld_flag. * configure.in (gcc_cv_ld_hidden): Don't test gnu_ld_flag.
......
...@@ -491,6 +491,7 @@ dump_flow_info (FILE *file) ...@@ -491,6 +491,7 @@ dump_flow_info (FILE *file)
static const char * const reg_class_names[] = REG_CLASS_NAMES; static const char * const reg_class_names[] = REG_CLASS_NAMES;
fprintf (file, "%d registers.\n", max_regno); fprintf (file, "%d registers.\n", max_regno);
if (reg_n_info)
for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++) for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
if (REG_N_REFS (i)) if (REG_N_REFS (i))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment