diff options
author | Mark Mitchell <mark@codesourcery.com> | 2003-06-11 21:56:31 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-06-11 21:56:31 +0000 |
commit | 24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc (patch) | |
tree | 0b28df6e264980ed38d8b104af64a54cec676a78 | |
parent | a897bbba37431cf5766fb83c26869c8c88cf6e33 (diff) | |
download | gcc-24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc.zip gcc-24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc.tar.gz gcc-24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc.tar.bz2 |
mangle.c (tm_p.h): Include it.
* mangle.c (tm_p.h): Include it.
* Make-lang.in (cp/mangle.o): Depend on $(TM_P_H).
From-SVN: r67798
-rw-r--r-- | gcc/cp/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/cp/mangle.c | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 0f79c7c..a4b9bef 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2003-06-11 Mark Mitchell <mark@codesourcery.com> + * mangle.c (tm_p.h): Include it. + * Make-lang.in (cp/mangle.o): Depend on $(TM_P_H). + PR c++/11131 * tree.c (cp_cannot_inline_fn): Check for "inline" before instantiation. diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 1b7cc0b..7f823dc 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -277,7 +277,7 @@ cp/semantics.o: cp/semantics.c $(CXX_TREE_H) $(TM_H) cp/lex.h except.h toplev.h cp/dump.o: cp/dump.c $(CXX_TREE_H) $(TM_H) tree-dump.h cp/optimize.o: cp/optimize.c $(CXX_TREE_H) $(TM_H) rtl.h integrate.h insn-config.h \ input.h $(PARAMS_H) debug.h tree-inline.h -cp/mangle.o: cp/mangle.c $(CXX_TREE_H) $(TM_H) toplev.h real.h gt-cp-mangle.h +cp/mangle.o: cp/mangle.c $(CXX_TREE_H) $(TM_H) toplev.h real.h gt-cp-mangle.h $(TM_P_H) cp/parser.o: cp/parser.c $(CXX_TREE_H) $(TM_H) diagnostic.h gt-cp-parser.h output.h diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index 343cca5..33df093 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -52,6 +52,7 @@ #include "coretypes.h" #include "tm.h" #include "tree.h" +#include "tm_p.h" #include "cp-tree.h" #include "real.h" #include "obstack.h" |