diff options
author | Gabriel Dos Reis <gdr@merlin.codesourcery.com> | 2001-09-15 19:47:34 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2001-09-15 19:47:34 +0000 |
commit | a1bda5f1551e49f8146ea07bfb7e7e82c48a290f (patch) | |
tree | aa14a300a0e566f47746856f6bf615e94a4a9d45 | |
parent | 48bbe8e612d520fe88cfa3dad057366e047f86af (diff) | |
download | gcc-a1bda5f1551e49f8146ea07bfb7e7e82c48a290f.zip gcc-a1bda5f1551e49f8146ea07bfb7e7e82c48a290f.tar.gz gcc-a1bda5f1551e49f8146ea07bfb7e7e82c48a290f.tar.bz2 |
Make-lang.in (cp/error.o): Depend on real.h
* Make-lang.in (cp/error.o): Depend on real.h
* error.c: #include "real.h"
From-SVN: r45639
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/cp/error.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3835842..8d0498f 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-09-15 Gabriel Dos Reis <gdr@merlin.codesourcery.com> + + * Make-lang.in (cp/error.o): Depend on real.h + * error.c: #include "real.h" + 2001-09-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index b479414..38b3a8b 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -270,7 +270,7 @@ cp/expr.o: cp/expr.c $(CXX_TREE_H) $(RTL_H) flags.h $(EXPR_H) toplev.h \ cp/xref.o: cp/xref.c $(CXX_TREE_H) input.h toplev.h cp/pt.o: cp/pt.c $(CXX_TREE_H) cp/decl.h cp/parse.h cp/lex.h toplev.h \ $(GGC_H) $(RTL_H) except.h -cp/error.o: cp/error.c $(CXX_TREE_H) toplev.h diagnostic.h +cp/error.o: cp/error.c $(CXX_TREE_H) toplev.h diagnostic.h real.h cp/errfn.o: cp/errfn.c $(CXX_TREE_H) toplev.h cp/repo.o: cp/repo.c $(CXX_TREE_H) toplev.h $(GGC_H) diagnostic.h cp/semantics.o: cp/semantics.c $(CXX_TREE_H) cp/lex.h except.h toplev.h \ diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 8907858..3545466 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. */ #include "system.h" #include "tree.h" #include "cp-tree.h" +#include "real.h" #include "obstack.h" #include "toplev.h" #include "diagnostic.h" |