diff options
author | Richard Henderson <rth@redhat.com> | 2004-02-24 15:40:03 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-02-24 15:40:03 -0800 |
commit | c263766cf3464e48e71481bf46ba6f5886d64433 (patch) | |
tree | d6106abaa59ec697ae2e96cb33c733be39b7abe0 /gcc/ra-debug.c | |
parent | dba2921d5284680567f321495a89e65c3b06e80e (diff) | |
download | gcc-c263766cf3464e48e71481bf46ba6f5886d64433.zip gcc-c263766cf3464e48e71481bf46ba6f5886d64433.tar.gz gcc-c263766cf3464e48e71481bf46ba6f5886d64433.tar.bz2 |
toplev.c (dump_file_tbl): Rename from dump_file.
* toplev.c (dump_file_tbl): Rename from dump_file.
* bb-reorder.c, bt-load.c, cfgcleanup.c, cfglayout.c, cfgloopanal.c,
cfgloopmanip.c, cfgrtl.c, config/arm/arm.c, config/frv/frv.c,
config/i386/i386.c, config/ia64/ia64.c, config/mips/mips.c,
config/sh/sh.c, cse.c, flow.c, ifcvt.c, loop-iv.c, loop-unroll.c,
loop-unswitch.c, output.h, predict.c, profile.c, ra-build.c,
ra-colorize.c, ra-debug.c, ra-rewrite.c, ra.c, regrename.c, reload1.c,
toplev.c, tracer.c, value-prof.c, var-tracking.c, web.c:
s/rtl_dump_file/dump_file/g.
From-SVN: r78399
Diffstat (limited to 'gcc/ra-debug.c')
-rw-r--r-- | gcc/ra-debug.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/ra-debug.c b/gcc/ra-debug.c index 780c765..633f375 100644 --- a/gcc/ra-debug.c +++ b/gcc/ra-debug.c @@ -54,8 +54,8 @@ ra_debug_msg (unsigned int level, const char *format, ...) va_list ap; va_start (ap, format); - if ((debug_new_regalloc & level) != 0 && rtl_dump_file != NULL) - vfprintf (rtl_dump_file, format, ap); + if ((debug_new_regalloc & level) != 0 && dump_file != NULL) + vfprintf (dump_file, format, ap); va_end (ap); } @@ -643,7 +643,7 @@ dump_igraph (struct df *df ATTRIBUTE_UNUSED) int num = 0; int num2; unsigned int i; - if (!rtl_dump_file || (debug_new_regalloc & (DUMP_IGRAPH | DUMP_WEBS)) == 0) + if (!dump_file || (debug_new_regalloc & (DUMP_IGRAPH | DUMP_WEBS)) == 0) return; ra_debug_msg (DUMP_IGRAPH, "conflicts:\n "); for (def1 = 0; def1 < num_webs; def1++) @@ -726,7 +726,7 @@ dump_igraph_machine (void) { unsigned int i; - if (!rtl_dump_file || (debug_new_regalloc & DUMP_IGRAPH_M) == 0) + if (!dump_file || (debug_new_regalloc & DUMP_IGRAPH_M) == 0) return; ra_debug_msg (DUMP_IGRAPH_M, "g %d %d\n", num_webs - num_subwebs, FIRST_PSEUDO_REGISTER); @@ -786,7 +786,7 @@ dump_constraints (void) { rtx insn; int i; - if (!rtl_dump_file || (debug_new_regalloc & DUMP_CONSTRAINTS) == 0) + if (!dump_file || (debug_new_regalloc & DUMP_CONSTRAINTS) == 0) return; for (i = FIRST_PSEUDO_REGISTER; i < ra_max_regno; i++) if (regno_reg_rtx[i] && GET_CODE (regno_reg_rtx[i]) == REG) @@ -839,7 +839,7 @@ dump_graph_cost (unsigned int level, const char *msg) { unsigned int i; unsigned HOST_WIDE_INT cost; - if (!rtl_dump_file || (debug_new_regalloc & level) == 0) + if (!dump_file || (debug_new_regalloc & level) == 0) return; cost = 0; @@ -861,7 +861,7 @@ dump_ra (struct df *df ATTRIBUTE_UNUSED) { struct web *web; struct dlist *d; - if (!rtl_dump_file || (debug_new_regalloc & DUMP_RESULTS) == 0) + if (!dump_file || (debug_new_regalloc & DUMP_RESULTS) == 0) return; ra_debug_msg (DUMP_RESULTS, "\nColored:\n"); |