From 6a1c27c3f606a383c075e329c769128c54ee57e2 Mon Sep 17 00:00:00 2001 From: ghazi Date: Wed, 15 Jan 2003 01:21:46 +0000 Subject: cp: * decl2.c (check_classfn): Fix uninitialized warning. (build_anon_union_vars): Likewise. * pt.c (tsubst_copy): Likewise. gcc: * genattr.c (main): Rearrange output to avoid prototype warning. * genautomata.c (transform_3): Fix ambiguous-else warning. * local-alloc.c (requires_inout): Add parentheses around assignment used as truth-value. * timevar.c: Move system includes above local includes. Include toplev.h * Makefile.in (timevar.o): Depend on toplev.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61308 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/timevar.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gcc/timevar.c') diff --git a/gcc/timevar.c b/gcc/timevar.c index 195040cdd49..11bcec97a30 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -21,17 +21,18 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "config.h" #include "system.h" -#include "coretypes.h" -#include "tm.h" -#include "intl.h" -#include "rtl.h" - #ifdef HAVE_SYS_TIMES_H # include #endif #ifdef HAVE_SYS_RESOURCE_H #include #endif +#include "coretypes.h" +#include "tm.h" +#include "intl.h" +#include "rtl.h" +#include "toplev.h" + #ifndef HAVE_CLOCK_T typedef int clock_t; -- cgit v1.2.1