aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.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/rtl.c
parent4d73e20b4e0c9fc79ee93390113ddfffb4be38d3 (diff)
downloadgcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.zip
gcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.tar.gz
gcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.tar.bz2
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/rtl.c')
-rw-r--r--gcc/rtl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index 5082050..8a28306 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -19,7 +19,14 @@ along with GCC; see the file COPYING. If not, write to 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"
+#endif
+
#include "system.h"
#include "coretypes.h"
#include "tm.h"