From: Mark Mitchell Date: Wed, 11 Jun 2003 21:56:31 +0000 (+0000) Subject: mangle.c (tm_p.h): Include it. X-Git-Tag: releases/gcc-3.4.0~5932 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24386c5ec6a6f91d94bb14a65f5ec8a5c84235bc;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 0f79c7cc41f3..a4b9bef89abc 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2003-06-11 Mark Mitchell + * 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 1b7cc0be65f4..7f823dc391e6 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 343cca556c25..33df093fdb55 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"