summaryrefslogtreecommitdiff
path: root/gcc/varray.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>2004-08-16 23:05:04 +0000
committerZack Weinberg <zack@gcc.gnu.org>2004-08-16 23:05:04 +0000
commit45c8116dff2f220cfc8bc2d8a711fe05a6a81bce (patch)
tree4b01d869c6393712cbeb6564cd4c1f21829d3675 /gcc/varray.c
parent4d73e20b4e0c9fc79ee93390113ddfffb4be38d3 (diff)
downloadgcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.tar.gz
Makefile.in (BUILD_PREFIX, [...]): Delete.
* Makefile.in (BUILD_PREFIX, BUILD_PREFIX_1): Delete. (BUILD_RTL, BUILD_PRINT, BUILD_ERRORS, BUILD_VARRAY): Update. (genobjs): Add build-rtl.o, build-print-rtl.o, build-varray.o. (genobjs static pattern rule): Remove %.c dependency. ($(BUILD_PREFIX_1)rtl.o, print-rtl.o, $(BUILD_PREFIX_1)varray.o): Rename rules; delete commands; fix dependencies. (mostlyclean): Do not delete temporary source copies. * configure.ac: Delete all references to BUILD_PREFIX and BUILD_PREFIX_1. * configure: Regenerate. * print-rtl.c: Include bconfig.h #ifdef GENERATOR_FILE. Do not include tree.h, real.h, flags.h, hard-reg-set.h, or basic-block.h #ifdef GENERATOR_FILE. Surround some more code with #ifndef GENERATOR_FILE so that nothing from those headers is used. * rtl.c, varray.c: Include bconfig.h #ifdef GENERATOR_FILE. From-SVN: r86083
Diffstat (limited to 'gcc/varray.c')
-rw-r--r--gcc/varray.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/varray.c b/gcc/varray.c
index fc951da56e4..c5c3a8ec420 100644
--- a/gcc/varray.c
+++ b/gcc/varray.c
@@ -20,11 +20,18 @@
the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
MA 02111-1307, 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"
-#include "errors.h"
+#endif
+
#include "system.h"
#include "coretypes.h"
#include "tm.h"
+#include "errors.h"
#include "varray.h"
#include "ggc.h"
#include "hashtab.h"