alias.c: Include toplev.h
authorGraham Stott <grahams@rcp.co.uk>
Fri, 19 Jun 1998 23:37:04 +0000 (17:37 -0600)
committerJeff Law <law@gcc.gnu.org>
Fri, 19 Jun 1998 23:37:04 +0000 (17:37 -0600)
        * 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.

From-SVN: r20623

13 files changed:
gcc/ChangeLog
gcc/Makefile.in
gcc/alias.c
gcc/caller-save.c
gcc/combine.c
gcc/flow.c
gcc/global.c
gcc/jump.c
gcc/local-alloc.c
gcc/loop.c
gcc/regmove.c
gcc/stupid.c
gcc/unroll.c

index b5764247478c270963c6a96283eebd0d0935d0a5..f31ecd613429ccb980013cc19389dd864b1acb55 100644 (file)
@@ -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.
index 24e29c0522489749a103d897055b70f536356e17..1a61afd254633a332dea095b393ed257ff94dd85 100644 (file)
@@ -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
index 7d8c32b37f96167ae4882b4480b44d3c07428811..99df4fa8ccf11bdeb8eb46791f3c12dc6ae2abdc 100644 (file)
@@ -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));
index 375d20810979ba38408609c4120d40b79e89d216..4a2deb60db8bf2188e28078bb1928123ef5aaca7 100644 (file)
@@ -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
index 14da483ccd11194c936f75db9ef6038797da77c1..a453b574d21900d7388ceba873ea4ebc4198f5fb 100644 (file)
@@ -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.  */
index 8021b4e2c89432e637641a08d6bfda7ea592a0a4..6579e3b405bbe8c3a1a75d9613ba0e6b7b61f70c 100644 (file)
@@ -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
index 367beada57dd4c1d16801130397b05cee86b4156..94d1fbcc500fa4451f7623b9a145e54611dccf26 100644 (file)
@@ -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
index 9feb99efa289dc14b961f894b3784ea0960d6a61..36f9e783175d95b584cc8da93a8e20ba17c08b35 100644 (file)
@@ -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.  */
index 9daf31dda14b558a1d88b1eeb8f091e5a0dcd1a8..960e83b5b5a3dbe37b6be364f87fde115ecbe4a5 100644 (file)
@@ -70,6 +70,7 @@ Boston, MA 02111-1307, USA.  */
 #include "insn-attr.h"
 #include "recog.h"
 #include "output.h"
+#include "toplev.h"
 \f
 /* Next quantity number available for allocation.  */
 
index ac06b1e41cff47afba3f365271813962be5a7f37..0524e7e4f1c2f601142b941672921fa5a44a1438 100644 (file)
@@ -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.
index 9091aaebdf60b6c7149de050c2d8d22b48b9a12c..cb26dd9b638174ddffb634f53acda77387a4053a 100644 (file)
@@ -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));
index d064f979e879e4823a56f34dfc09ac87465dba7c..718c39b6c04ef9381f43f51b41a3e0978b3e5023 100644 (file)
@@ -49,6 +49,7 @@ Boston, MA 02111-1307, USA.  */
 #include "hard-reg-set.h"
 #include "regs.h"
 #include "flags.h"
+#include "toplev.h"
 \f
 /* Vector mapping INSN_UIDs to suids.
    The suids are like uids but increase monotonically always.
index e3c43ff9e463665439685c7465084e307033306b..8edebda00a953900e718da1e482f1bc8d13d834f 100644 (file)
@@ -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.  */