diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-16 23:05:04 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-16 23:05:04 +0000 |
commit | 690ff52f05a906f7140a975ca9487a9cf0c2aad4 (patch) | |
tree | 4b01d869c6393712cbeb6564cd4c1f21829d3675 /gcc/varray.c | |
parent | bcefa890eaf9078ad7951824853a9df272f8d6c3 (diff) | |
download | gcc-690ff52f05a906f7140a975ca9487a9cf0c2aad4.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86083 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varray.c')
-rw-r--r-- | gcc/varray.c | 9 |
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" |