OSDN Git Service

* alias.c: Include toplev.h
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jun 1998 23:37:04 +0000 (23:37 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Jun 1998 23:37:04 +0000 (23:37 +0000)
        * 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.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20623 138bc75d-0d04-0410-961f-82ee72b054a4

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 b576424..f31ecd6 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 24e29c0..1a61afd 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 7d8c32b..99df4fa 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 375d208..4a2deb6 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 14da483..a453b57 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 8021b4e..6579e3b 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 367bead..94d1fbc 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 9feb99e..36f9e78 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 9daf31d..960e83b 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 ac06b1e..0524e7e 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 9091aae..cb26dd9 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 d064f97..718c39b 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 e3c43ff..8edebda 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.  */