aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJason Merrill <jason@gcc.gnu.org>2000-06-22 17:01:04 -0400
committerJason Merrill <jason@gcc.gnu.org>2000-06-22 17:01:04 -0400
commit0d565768ab2fd9a3be34506b3d022b3a3eae575f (patch)
tree955852474d9da49965785fc754b93808138697e7 /gcc
parent655dc6eebfd39f08c7887a55a7c0895ac5e44b6e (diff)
downloadgcc-0d565768ab2fd9a3be34506b3d022b3a3eae575f.zip
gcc-0d565768ab2fd9a3be34506b3d022b3a3eae575f.tar.gz
gcc-0d565768ab2fd9a3be34506b3d022b3a3eae575f.tar.bz2
toplev.c (compile_file): Always call timevar_print.
* toplev.c (compile_file): Always call timevar_print. * Makefile.in (calls.o): Depend on TIMEVAR_H. From-SVN: r34653
Diffstat (limited to 'gcc')
-rw-r--r--gcc/Makefile.in2
-rw-r--r--gcc/toplev.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 5818d6b..56a3078 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1267,7 +1267,7 @@ builtins.o : builtins.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
$(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
except.h
calls.o : calls.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h $(EXPR_H) \
- insn-flags.h $(REGS_H) toplev.h output.h function.h
+ insn-flags.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H)
expmed.o : expmed.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
insn-flags.h insn-config.h insn-codes.h $(EXPR_H) $(RECOG_H) real.h toplev.h
explow.o : explow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
diff --git a/gcc/toplev.c b/gcc/toplev.c
index 2757932..9076703 100644
--- a/gcc/toplev.c
+++ b/gcc/toplev.c
@@ -2451,8 +2451,7 @@ compile_file (name)
/* Print the times. */
- if (! quiet_flag)
- timevar_print (stderr);
+ timevar_print (stderr);
}
/* This is called from various places for FUNCTION_DECL, VAR_DECL,