diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-06 05:05:11 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-05-06 05:05:11 +0000 |
commit | 12027a891274f9475fddd44cf12c822d3862c90b (patch) | |
tree | 16282ea60491af40b14a9b5612efd1772bd7221c | |
parent | 178e196ef10a21dc3da28e8523a27a724b462b2f (diff) | |
download | gcc-12027a891274f9475fddd44cf12c822d3862c90b.zip gcc-12027a891274f9475fddd44cf12c822d3862c90b.tar.gz gcc-12027a891274f9475fddd44cf12c822d3862c90b.tar.bz2 |
call.c, [...]: Add include of toplev.h.
Wed May 6 06:36:41 1998 Robert Lipe <robertl@dgii.com>
* call.c, class.c, decl.c, decl2.c, errfn.c, error.c, except.c,
expr.c, friend.c, init.c, lex.c, method.c, pt.c, repo.c, rtti.c,
search.c, semantics.c, sig.c, tree.c, typeck.c, typeck2.c,
xref.c: Add include of toplev.h.
From-SVN: r19567
-rw-r--r-- | gcc/cp/semantics.c | 1 | ||||
-rw-r--r-- | gcc/cp/sig.c | 1 | ||||
-rw-r--r-- | gcc/cp/tree.c | 2 | ||||
-rw-r--r-- | gcc/cp/typeck.c | 1 | ||||
-rw-r--r-- | gcc/cp/typeck2.c | 1 | ||||
-rw-r--r-- | gcc/cp/xref.c | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index e7b738a..5d526c0 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -30,6 +30,7 @@ #include "cp-tree.h" #include "except.h" #include "lex.h" +#include "toplev.h" /* There routines provide a modular interface to perform many parsing operations. They may therefore be used during actual parsing, or diff --git a/gcc/cp/sig.c b/gcc/cp/sig.c index f1e8ff9..01736a8 100644 --- a/gcc/cp/sig.c +++ b/gcc/cp/sig.c @@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA. */ #include "cp-tree.h" #include "flags.h" #include "assert.h" +#include "toplev.h" extern struct obstack *current_obstack; extern struct obstack permanent_obstack; diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index fc9fd37..6dd5147 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -26,6 +26,8 @@ Boston, MA 02111-1307, USA. */ #include "cp-tree.h" #include "flags.h" #include "rtl.h" +#include "toplev.h" + #ifdef __STDC__ #include <stdarg.h> #else diff --git a/gcc/cp/typeck.c b/gcc/cp/typeck.c index 183837c..05a45af 100644 --- a/gcc/cp/typeck.c +++ b/gcc/cp/typeck.c @@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA. */ #include "flags.h" #include "output.h" #include "expr.h" +#include "toplev.h" extern void compiler_error (); diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c index e7afbcf..f7b34c3 100644 --- a/gcc/cp/typeck2.c +++ b/gcc/cp/typeck2.c @@ -35,6 +35,7 @@ Boston, MA 02111-1307, USA. */ #include "tree.h" #include "cp-tree.h" #include "flags.h" +#include "toplev.h" static tree process_init_constructor PROTO((tree, tree, tree *)); diff --git a/gcc/cp/xref.c b/gcc/cp/xref.c index 8a5551c..dd85cef 100644 --- a/gcc/cp/xref.c +++ b/gcc/cp/xref.c @@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */ #include "tree.h" #include "cp-tree.h" #include "input.h" +#include "toplev.h" extern char *getpwd PROTO((void)); |