aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2006-01-23 15:16:10 +0000
committerZack Weinberg <zack@gcc.gnu.org>2006-01-23 15:16:10 +0000
commit6ff09968f1d0f5523b026701374f4a0386eb054c (patch)
treeb0026161a8b7c9eba1f3d94626dbf39660211e44
parent63e2552f6ccb9508ad61a3d7852a3ed6c782047c (diff)
downloadgcc-6ff09968f1d0f5523b026701374f4a0386eb054c.zip
gcc-6ff09968f1d0f5523b026701374f4a0386eb054c.tar.gz
gcc-6ff09968f1d0f5523b026701374f4a0386eb054c.tar.bz2
r110129@banpei: zack | 2006-01-22 14:51:57 -0800
r110129@banpei: zack | 2006-01-22 14:51:57 -0800 * varray.c: Remove GENERATOR_FILE #ifdefs. From-SVN: r110125
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/varray.c15
2 files changed, 6 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d453d59..291dd51 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2006-01-22 Zack Weinberg <zackw@panix.com>
+ * varray.c: Remove GENERATOR_FILE #ifdefs.
+
+2006-01-22 Zack Weinberg <zackw@panix.com>
+
* genautomata.c (output_reserved_units_table): Emit nothing if
description->query_units_num is zero. Remove extra blank line.
(output_cpu_unit_reservation_p): Short circuit
diff --git a/gcc/varray.c b/gcc/varray.c
index ceec027..eb8c99c 100644
--- a/gcc/varray.c
+++ b/gcc/varray.c
@@ -1,5 +1,5 @@
/* Virtual array support.
- Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006
Free Software Foundation, Inc.
Contributed by Cygnus Solutions.
@@ -20,22 +20,11 @@
the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
-/* This file is compiled twice: once for the generator programs
- once for the compiler. */
-#ifdef GENERATOR_FILE
-#include "bconfig.h"
-#else
#include "config.h"
-#endif
-
#include "system.h"
#include "coretypes.h"
#include "tm.h"
-#ifdef GENERATOR_FILE
-# include "errors.h"
-#else
-# include "toplev.h"
-#endif
+#include "toplev.h"
#include "varray.h"
#include "ggc.h"
#include "hashtab.h"