]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
toplev.h: New file.
authorRobert Lipe <robertl@gcc.gnu.org>
Wed, 6 May 1998 04:54:01 +0000 (04:54 +0000)
committerRobert Lipe <robertl@gcc.gnu.org>
Wed, 6 May 1998 04:54:01 +0000 (04:54 +0000)
Wed May  6 06:35:38 1998  Robert Lipe  <robertl@dgii.com>
        * toplev.h: New file.   Protypes for functions in toplev.c.
        * tree.h, rtl.h: Deleted protos for functions in toplev.c.
        * c-common.c, c-convert.c, c-decl.c, c-iterate.c, c-lex.c,
        c-parse.in, c-parse.y, c-pragma.c, c-typeck.c, calls.c,
        convert.c, dwarf2out.c, except.c, expr.c, final.c, fold-const.c,
        function.c, hash.c, profile.c, real.c, reg-stack.c, regclass.c,
        reload.c, reload1.c, stmt.c, stor-layout.c, tlink.c, tree.c,
        varasm.c: include it.

From-SVN: r19564

19 files changed:
gcc/convert.c
gcc/dwarf2out.c
gcc/except.c
gcc/expr.c
gcc/final.c
gcc/fold-const.c
gcc/function.c
gcc/hash.c
gcc/profile.c
gcc/real.c
gcc/reg-stack.c
gcc/regclass.c
gcc/reload.c
gcc/reload1.c
gcc/stmt.c
gcc/stor-layout.c
gcc/tlink.c
gcc/tree.c
gcc/varasm.c

index 8bfe4627c652012d5059ea4fb956af3f2c2a7707..e03d39b7f32071f1220e0e80b16802c8cff7b17e 100644 (file)
@@ -26,6 +26,7 @@ Boston, MA 02111-1307, USA.  */
 #include "tree.h"
 #include "flags.h"
 #include "convert.h"
+#include "toplev.h"
 
 /* Convert EXPR to some pointer or reference type TYPE.
 
index ab2fab79d48137f48389cb005471e249ca4c1c17..110a62261c3ea2280c6e2be223a39b44600cd541 100644 (file)
@@ -40,6 +40,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "expr.h"
 #include "except.h"
 #include "dwarf2.h"
+#include "toplev.h"
 
 /* We cannot use <assert.h> in GCC source, since that would include
    GCC's assert.h, which may not be compatible with the host compiler.  */
index a434b2786422373828d9171f621975de3bf0e774..2d614f39f49b75aae12bf5983b13435a31c0a7e9 100644 (file)
@@ -404,6 +404,7 @@ Boston, MA 02111-1307, USA.  */
 #include "insn-config.h"
 #include "recog.h"
 #include "output.h"
+#include "toplev.h"
 
 /* One to use setjmp/longjmp method of generating code for exception
    handling.  */
index 16310e6ba78d5d6273da9c40b474cf9327f2d0b3..3fb9280bd57c7ed81a136a521d37d091504286cf 100644 (file)
@@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA.  */
 #include "output.h"
 #include "typeclass.h"
 #include "defaults.h"
+#include "toplev.h"
 
 #define CEIL(x,y) (((x) + (y) - 1) / (y))
 
index 2647bbe08f5f39704914ac2f133a6801cfe30ff5..84214c5f917feb4d20c2876e3f8b56e5e647e0d7 100644 (file)
@@ -67,6 +67,7 @@ Boston, MA 02111-1307, USA.  */
 #include "defaults.h"
 #include "output.h"
 #include "except.h"
+#include "toplev.h"
 
 /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist.  */
 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
index c36f37834affc2492472ae53ec231b021c85c762..c284ae2f67895230182d5bc6e021336c65ed383b 100644 (file)
@@ -47,6 +47,7 @@ Boston, MA 02111-1307, USA.  */
 #include <setjmp.h>
 #include "flags.h"
 #include "tree.h"
+#include "toplev.h"
 
 /* Handle floating overflow for `const_binop'.  */
 static jmp_buf float_error;
index 44cee08aa683817b6b5778b10a3e1251ad18ae97..f2bced234ac528ca2961bf77452039c18f3ffc98 100644 (file)
@@ -55,6 +55,7 @@ Boston, MA 02111-1307, USA.  */
 #include "output.h"
 #include "basic-block.h"
 #include "obstack.h"
+#include "toplev.h"
 
 #ifndef TRAMPOLINE_ALIGNMENT
 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
index 4149f3a83869f8778abac7aca32efa71fdefe05a..1428ae1c26b1df53d2461fc653b70a0b0808d602 100644 (file)
@@ -22,6 +22,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "system.h"
 #include "hash.h"
 #include "obstack.h"
+#include "gansidecl.h"
+#include "toplev.h"
 
 /* Obstack allocation and deallocation routines.  */
 #define obstack_chunk_alloc xmalloc
index 8b6fff5be987ee864ece4383adaa1a82fb7f032a..060ecfc81af9a06e7bdecf11cef6f2a8c5d98f85 100644 (file)
@@ -51,6 +51,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "tree.h"
 #include "output.h"
 #include "gcov-io.h"
+#include "toplev.h"
 
 extern char * xmalloc ();
 
index 713c0bef5b8a0b2c21b43509d8a66df30d1c80af..ac560499d611ff1e6b094e1f616a908736290589 100644 (file)
@@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA.  */
 #include "config.h"
 #include "system.h"
 #include "tree.h"
+#include "toplev.h"
 
 /* To enable support of XFmode extended real floating point, define
 LONG_DOUBLE_TYPE_SIZE 96 in the tm.h file (m68k.h or i386.h).
index 255cb38524b18dd9bbe69572dfc5394836c5bd3b..6496badbef8b388ca34dccc346b3b4620df6f38b 100644 (file)
@@ -166,6 +166,7 @@ Boston, MA 02111-1307, USA.  */
 #include "hard-reg-set.h"
 #include "flags.h"
 #include "insn-flags.h"
+#include "toplev.h"
 
 #ifdef STACK_REGS
 
index e4dff7921c8215861e59c8cc1ef01750e1730968..5fef265dda67c034ab8d1984a06970e0e4158cbf 100644 (file)
@@ -34,6 +34,7 @@ Boston, MA 02111-1307, USA.  */
 #include "recog.h"
 #include "reload.h"
 #include "real.h"
+#include "toplev.h"
 
 #ifndef REGISTER_MOVE_COST
 #define REGISTER_MOVE_COST(x, y) 2
index 80936971b6945a3883805ce60ab209abb76d4900..ecc46a283cda15630eb224e4132079f448fe8b4b 100644 (file)
@@ -100,6 +100,7 @@ a register with any other reload.  */
 #include "real.h"
 #include "output.h"
 #include "expr.h"
+#include "toplev.h"
 
 #ifndef REGISTER_MOVE_COST
 #define REGISTER_MOVE_COST(x, y) 2
index c9ebee9f89df7ea667ad41902a83a6cc457672f8..74322795c97cf8b5ff3e0b17408b431697a9316e 100644 (file)
@@ -35,6 +35,7 @@ Boston, MA 02111-1307, USA.  */
 #include "basic-block.h"
 #include "output.h"
 #include "real.h"
+#include "toplev.h"
 
 /* This file contains the reload pass of the compiler, which is
    run after register allocation has been done.  It checks that
index 58c292e6ce7650cb5770d224e19ba2078a8da1bc..4e26e78a0e6620f36f736755fd3e3e2e69f39827 100644 (file)
@@ -50,6 +50,7 @@ Boston, MA 02111-1307, USA.  */
 #include "loop.h"
 #include "recog.h"
 #include "machmode.h"
+#include "toplev.h"
 
 #define obstack_chunk_alloc xmalloc
 #define obstack_chunk_free free
index 365826d1727007ced6d6b10bc03a1ccc372ce8c0..606ebb1ab17592c7a1cd6a313df9e1887d64301b 100644 (file)
@@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA.  */
 #include "function.h"
 #include "rtl.h"
 #include "expr.h"
+#include "toplev.h"
 
 #define CEIL(x,y) (((x) + (y) - 1) / (y))
 
index 06207dda135c30a6a8197ced9e7b15b6d3c956ec..c12e8c16a6edc942f405eee950b4e1995abebc01 100644 (file)
@@ -24,6 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "system.h"
 #include "hash.h"
 #include "demangle.h"
+#include "toplev.h"
 
 #define MAX_ITERATIONS 17
 
index cc68d600b7154588547f446cebbde1ce2a3b8672..8a2d382f2683f5c8d86b0ef69ac2059674f04415 100644 (file)
@@ -46,6 +46,7 @@ Boston, MA 02111-1307, USA.  */
 #include "except.h"
 #include "function.h"
 #include "obstack.h"
+#include "toplev.h"
 
 #define obstack_chunk_alloc xmalloc
 #define obstack_chunk_free free
index f075d614ebe8cb1783a7c1a74f5577cd49acc233..ed24384755ee887dc96d1e95985e7bf147c22f68 100644 (file)
@@ -41,6 +41,7 @@ Boston, MA 02111-1307, USA.  */
 #include "regs.h"
 #include "defaults.h"
 #include "real.h"
+#include "toplev.h"
 
 #include "obstack.h"
 #include "c-pragma.h"