summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog15
-rw-r--r--gcc/Makefile.in27
-rw-r--r--gcc/alias.c1
-rw-r--r--gcc/caller-save.c1
-rw-r--r--gcc/combine.c1
-rw-r--r--gcc/flow.c1
-rw-r--r--gcc/global.c1
-rw-r--r--gcc/jump.c1
-rw-r--r--gcc/local-alloc.c1
-rw-r--r--gcc/loop.c1
-rw-r--r--gcc/regmove.c1
-rw-r--r--gcc/stupid.c1
-rw-r--r--gcc/unroll.c1
13 files changed, 41 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b5764247478..f31ecd61342 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,18 @@
+Sat Jun 20 00:27:40 1998 Graham <grahams@rcp.co.uk>
+
+ * alias.c: Include toplev.h
+ * caller-save.c: Include toplev.h
+ * combine.c: Include toplev.h
+ * flow.c Include toplev.h
+ * global.c: Include toplev.h
+ * jump.c: Include toplev.h
+ * local-alloc.c: Include toplev.h
+ * loop.c: Include toplev.h
+ * regmove.c: Include toplev.h
+ * stupid.c: Include toplev.h
+ * unroll.c: Include toplev.h
+ * Makefile.in: Add toplev.h dependencies.
+
Fri Jun 19 22:40:25 1998 Jason Merrill <jason@yorick.cygnus.com>
* regmove.c (copy_src_to_dest): Add decl for loop_depth.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 24e29c05224..1a61afd2546 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1417,8 +1417,10 @@ integrate.o : integrate.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
function.h output.h $(RECOG_H) except.h toplev.h
jump.o : jump.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h regs.h \
- insn-config.h insn-codes.h insn-flags.h $(RECOG_H) expr.h real.h except.h
-stupid.o : stupid.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h flags.h
+ insn-config.h insn-codes.h insn-flags.h $(RECOG_H) expr.h real.h except.h \
+ toplev.h
+stupid.o : stupid.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h \
+ flags.h toplev.h
cse.o : cse.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h flags.h \
real.h insn-config.h insn-codes.h $(RECOG_H) expr.h toplev.h output.h
@@ -1427,24 +1429,25 @@ gcse.o : gcse.c $(CONFIG_H) system.h $(RTL_H) regs.h hard-reg-set.h flags.h \
profile.o : profile.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-flags.h \
gcov-io.h $(TREE_H) output.h regs.h toplev.h
loop.o : loop.c $(CONFIG_H) system.h $(RTL_H) flags.h loop.h insn-config.h \
- insn-flags.h insn-codes.h regs.h hard-reg-set.h $(RECOG_H) expr.h real.h
+ insn-flags.h insn-codes.h regs.h hard-reg-set.h $(RECOG_H) expr.h real.h \
+ toplev.h
unroll.o : unroll.c $(CONFIG_H) system.h $(RTL_H) insn-config.h insn-codes.h \
- integrate.h regs.h $(RECOG_H) flags.h expr.h loop.h
+ integrate.h regs.h $(RECOG_H) flags.h expr.h loop.h toplev.h
flow.o : flow.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-config.h \
- $(BASIC_BLOCK_H) regs.h hard-reg-set.h output.h
+ $(BASIC_BLOCK_H) regs.h hard-reg-set.h output.h toplev.h
combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h \
insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
- $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h
+ $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h
regclass.o : regclass.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h flags.h \
$(BASIC_BLOCK_H) regs.h insn-config.h $(RECOG_H) reload.h real.h toplev.h \
output.h
local-alloc.o : local-alloc.c $(CONFIG_H) system.h $(RTL_H) flags.h \
$(BASIC_BLOCK_H) regs.h hard-reg-set.h insn-config.h $(RECOG_H) output.h \
- insn-attr.h
+ insn-attr.h toplev.h
bitmap.o : bitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) \
regs.h
global.o : global.c $(CONFIG_H) system.h $(RTL_H) flags.h \
- $(BASIC_BLOCK_H) regs.h hard-reg-set.h insn-config.h output.h
+ $(BASIC_BLOCK_H) regs.h hard-reg-set.h insn-config.h output.h toplev.h
reload.o : reload.c $(CONFIG_H) system.h $(RTL_H) flags.h output.h expr.h \
reload.h $(RECOG_H) hard-reg-set.h insn-config.h insn-codes.h regs.h \
@@ -1453,16 +1456,16 @@ reload1.o : reload1.c $(CONFIG_H) system.h $(RTL_H) real.h flags.h expr.h \
reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
$(BASIC_BLOCK_H) $(RECOG_H) output.h toplev.h
caller-save.o : caller-save.c $(CONFIG_H) system.h $(RTL_H) flags.h \
- regs.h hard-reg-set.h insn-codes.h insn-config.h $(BASIC_BLOCK_H) $(RECOG_H) \
- reload.h expr.h
+ regs.h hard-reg-set.h insn-codes.h insn-config.h $(BASIC_BLOCK_H) \
+ $(RECOG_H) reload.h expr.h toplev.h
reorg.o : reorg.c $(CONFIG_H) system.h $(RTL_H) conditions.h hard-reg-set.h \
$(BASIC_BLOCK_H) regs.h insn-config.h insn-codes.h insn-attr.h \
insn-flags.h $(RECOG_H) flags.h output.h expr.h
alias.o : alias.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h regs.h \
- insn-codes.h
+ insn-codes.h toplev.h
regmove.o : regmove.c $(CONFIG_H) system.h $(RTL_H) insn-config.h \
insn-codes.h recog.h output.h reload.h regs.h hard-reg-set.h flags.h \
- expr.h insn-flags.h $(BASIC_BLOCK_H)
+ expr.h insn-flags.h $(BASIC_BLOCK_H) toplev.h
$(SCHED_PREFIX)sched.o : $(SCHED_PREFIX)sched.c $(CONFIG_H) system.h $(RTL_H) \
$(BASIC_BLOCK_H) regs.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
toplev.h
diff --git a/gcc/alias.c b/gcc/alias.c
index 7d8c32b37f9..99df4fa8ccf 100644
--- a/gcc/alias.c
+++ b/gcc/alias.c
@@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA. */
#include "regs.h"
#include "hard-reg-set.h"
#include "flags.h"
+#include "toplev.h"
static rtx canon_rtx PROTO((rtx));
static int rtx_equal_for_memref_p PROTO((rtx, rtx));
diff --git a/gcc/caller-save.c b/gcc/caller-save.c
index 375d2081097..4a2deb60db8 100644
--- a/gcc/caller-save.c
+++ b/gcc/caller-save.c
@@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */
#include "basic-block.h"
#include "reload.h"
#include "expr.h"
+#include "toplev.h"
#ifndef MAX_MOVE_MAX
#define MAX_MOVE_MAX MOVE_MAX
diff --git a/gcc/combine.c b/gcc/combine.c
index 14da483ccd1..a453b574d21 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -97,6 +97,7 @@ Boston, MA 02111-1307, USA. */
#include "insn-attr.h"
#include "recog.h"
#include "real.h"
+#include "toplev.h"
/* It is not safe to use ordinary gen_lowpart in combine.
Use gen_lowpart_for_combine instead. See comments there. */
diff --git a/gcc/flow.c b/gcc/flow.c
index 8021b4e2c89..6579e3b405b 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -118,6 +118,7 @@ Boston, MA 02111-1307, USA. */
#include "flags.h"
#include "output.h"
#include "except.h"
+#include "toplev.h"
#include "obstack.h"
#define obstack_chunk_alloc xmalloc
diff --git a/gcc/global.c b/gcc/global.c
index 367beada57d..94d1fbcc500 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */
#include "regs.h"
#include "insn-config.h"
#include "output.h"
+#include "toplev.h"
/* This pass of the compiler performs global register allocation.
It assigns hard register numbers to all the pseudo registers
diff --git a/gcc/jump.c b/gcc/jump.c
index 9feb99efa28..36f9e783175 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -63,6 +63,7 @@ Boston, MA 02111-1307, USA. */
#include "expr.h"
#include "real.h"
#include "except.h"
+#include "toplev.h"
/* ??? Eventually must record somehow the labels used by jumps
from nested functions. */
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c
index 9daf31dda14..960e83b5b5a 100644
--- a/gcc/local-alloc.c
+++ b/gcc/local-alloc.c
@@ -70,6 +70,7 @@ Boston, MA 02111-1307, USA. */
#include "insn-attr.h"
#include "recog.h"
#include "output.h"
+#include "toplev.h"
/* Next quantity number available for allocation. */
diff --git a/gcc/loop.c b/gcc/loop.c
index ac06b1e41cf..0524e7e4f1c 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -48,6 +48,7 @@ Boston, MA 02111-1307, USA. */
#include "real.h"
#include "loop.h"
#include "except.h"
+#include "toplev.h"
/* Vector mapping INSN_UIDs to luids.
The luids are like uids but increase monotonically always.
diff --git a/gcc/regmove.c b/gcc/regmove.c
index 9091aaebdf6..cb26dd9b638 100644
--- a/gcc/regmove.c
+++ b/gcc/regmove.c
@@ -44,6 +44,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "expr.h"
#include "insn-flags.h"
#include "basic-block.h"
+#include "toplev.h"
static int optimize_reg_copy_1 PROTO((rtx, rtx, rtx));
static void optimize_reg_copy_2 PROTO((rtx, rtx, rtx));
diff --git a/gcc/stupid.c b/gcc/stupid.c
index d064f979e87..718c39b6c04 100644
--- a/gcc/stupid.c
+++ b/gcc/stupid.c
@@ -49,6 +49,7 @@ Boston, MA 02111-1307, USA. */
#include "hard-reg-set.h"
#include "regs.h"
#include "flags.h"
+#include "toplev.h"
/* Vector mapping INSN_UIDs to suids.
The suids are like uids but increase monotonically always.
diff --git a/gcc/unroll.c b/gcc/unroll.c
index e3c43ff9e46..8edebda00a9 100644
--- a/gcc/unroll.c
+++ b/gcc/unroll.c
@@ -156,6 +156,7 @@ enum unroll_types { UNROLL_COMPLETELY, UNROLL_MODULO, UNROLL_NAIVE };
#include "flags.h"
#include "expr.h"
#include "loop.h"
+#include "toplev.h"
/* This controls which loops are unrolled, and by how much we unroll
them. */