aboutsummaryrefslogtreecommitdiff
path: root/gcc/timevar.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-01-15 01:21:46 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-01-15 01:21:46 +0000
commitdd1b7476b15731af50e306410e72d5d307236e67 (patch)
tree3ad64b3477d3a7f104bf10206c07949e3b39a226 /gcc/timevar.c
parent8cb5ee71923f70805d8b67418e9d098d640ff6c4 (diff)
downloadgcc-dd1b7476b15731af50e306410e72d5d307236e67.zip
gcc-dd1b7476b15731af50e306410e72d5d307236e67.tar.gz
gcc-dd1b7476b15731af50e306410e72d5d307236e67.tar.bz2
decl2.c (check_classfn): Fix uninitialized warning.
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. From-SVN: r61308
Diffstat (limited to 'gcc/timevar.c')
-rw-r--r--gcc/timevar.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/timevar.c b/gcc/timevar.c
index 195040c..11bcec9 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 <sys/times.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
+#include "coretypes.h"
+#include "tm.h"
+#include "intl.h"
+#include "rtl.h"
+#include "toplev.h"
+
#ifndef HAVE_CLOCK_T
typedef int clock_t;