aboutsummaryrefslogtreecommitdiff
path: root/gcc/toplev.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-08-18 19:43:30 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-08-18 19:43:30 -0700
commiteced69b5ddee64392882fe9f0c9675bef645dbfc (patch)
treec43bbd5700bc12e176cc6512cf285b0c642a78f1 /gcc/toplev.c
parentb36d8fb47abed24594ccaf2f2a8bc3486787535a (diff)
downloadgcc-eced69b5ddee64392882fe9f0c9675bef645dbfc.zip
gcc-eced69b5ddee64392882fe9f0c9675bef645dbfc.tar.gz
gcc-eced69b5ddee64392882fe9f0c9675bef645dbfc.tar.bz2
timevar.def (TV_MACH_DEP): New.
* timevar.def (TV_MACH_DEP): New. * toplev.c (rest_of_compilation): Use it. * config/ia64/ia64.c (ia64_reorg): Push to TV_SCHED2. From-SVN: r45017
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r--gcc/toplev.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 690a3bc..8f2e8f5 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -3611,11 +3611,13 @@ rest_of_compilation (decl)
/* If a machine dependent reorganization is needed, call it. */
#ifdef MACHINE_DEPENDENT_REORG
+ timevar_push (TV_MACH_DEP);
open_dump_file (DFI_mach, decl);
MACHINE_DEPENDENT_REORG (insns);
close_dump_file (DFI_mach, print_rtl, insns);
+ timevar_pop (TV_MACH_DEP);
ggc_collect ();
#endif