summaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog14
-rw-r--r--gcc/cp/Make-lang.in4
-rw-r--r--gcc/cp/call.c1
-rw-r--r--gcc/cp/class.c1
-rw-r--r--gcc/cp/except.c1
-rw-r--r--gcc/cp/init.c1
-rw-r--r--gcc/cp/lex.c1
-rw-r--r--gcc/cp/method.c1
-rw-r--r--gcc/cp/parser.c1
-rw-r--r--gcc/cp/pt.c1
-rw-r--r--gcc/cp/rtti.c1
-rw-r--r--gcc/cp/search.c1
12 files changed, 16 insertions, 12 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 2dcdb770ea3..b1f073460ac 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,17 @@
+2012-05-31 Steven Bosscher <steven@gcc.gnu.org>
+
+ * call.c: Do not include output.h.
+ * class.c: Likewise.
+ * except.c: Likewise.
+ * friend.c: Likewise.
+ * init.c: Likewise.
+ * lex.c: Likewise.
+ * method.c: Likewise.
+ * parser.c: Likewise.
+ * pt.c: Likewise.
+ * rtti.c: Likewise.
+ * search.c: Likewise.
+
2012-05-30 Jason Merrill <jason@redhat.com>
PR c++/53356
diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in
index c32c87eb65a..a6de644ba2a 100644
--- a/gcc/cp/Make-lang.in
+++ b/gcc/cp/Make-lang.in
@@ -265,7 +265,7 @@ CXX_PARSER_H = tree.h c-family/c-pragma.h cp/parser.h
CXX_PRETTY_PRINT_H = cp/cxx-pretty-print.h $(C_PRETTY_PRINT_H)
cp/lex.o: cp/lex.c $(CXX_TREE_H) $(TM_H) $(FLAGS_H) \
- $(C_PRAGMA_H) output.h input.h cp/operators.def $(TM_P_H) \
+ $(C_PRAGMA_H) input.h cp/operators.def $(TM_P_H) \
c-family/c-objc.h
cp/cp-lang.o: cp/cp-lang.c $(CXX_TREE_H) $(TM_H) debug.h langhooks.h \
$(LANGHOOKS_DEF_H) $(C_COMMON_H) gtype-cp.h gt-cp-cp-lang.h \
@@ -334,7 +334,7 @@ cp/optimize.o: cp/optimize.c $(CXX_TREE_H) $(TM_H) \
cp/mangle.o: cp/mangle.c $(CXX_TREE_H) $(TM_H) $(REAL_H) \
gt-cp-mangle.h $(TARGET_H) $(TM_P_H) $(CGRAPH_H)
cp/parser.o: cp/parser.c $(CXX_TREE_H) $(TM_H) $(DIAGNOSTIC_CORE_H) \
- gt-cp-parser.h output.h $(TARGET_H) $(PLUGIN_H) intl.h \
+ gt-cp-parser.h $(TARGET_H) $(PLUGIN_H) intl.h \
c-family/c-objc.h tree-pretty-print.h $(CXX_PARSER_H) $(TIMEVAR.H)
cp/cp-gimplify.o: cp/cp-gimplify.c $(CXX_TREE_H) $(C_COMMON_H) \
$(TM_H) coretypes.h pointer-set.h tree-iterator.h $(SPLAY_TREE_H)
diff --git a/gcc/cp/call.c b/gcc/cp/call.c
index 5efa57cd759..6745afd379d 100644
--- a/gcc/cp/call.c
+++ b/gcc/cp/call.c
@@ -31,7 +31,6 @@ along with GCC; see the file COPYING3. If not see
#include "tm.h"
#include "tree.h"
#include "cp-tree.h"
-#include "output.h"
#include "flags.h"
#include "toplev.h"
#include "diagnostic-core.h"
diff --git a/gcc/cp/class.c b/gcc/cp/class.c
index 5aef0fe71f4..c30054d5709 100644
--- a/gcc/cp/class.c
+++ b/gcc/cp/class.c
@@ -31,7 +31,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "cp-tree.h"
#include "flags.h"
-#include "output.h"
#include "toplev.h"
#include "target.h"
#include "convert.h"
diff --git a/gcc/cp/except.c b/gcc/cp/except.c
index 8998c7d7091..6fe3cce2b30 100644
--- a/gcc/cp/except.c
+++ b/gcc/cp/except.c
@@ -30,7 +30,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "cp-tree.h"
#include "flags.h"
-#include "output.h"
#include "tree-inline.h"
#include "tree-iterator.h"
#include "target.h"
diff --git a/gcc/cp/init.c b/gcc/cp/init.c
index ca6f14af370..5bd46cb4b0d 100644
--- a/gcc/cp/init.c
+++ b/gcc/cp/init.c
@@ -29,7 +29,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "cp-tree.h"
#include "flags.h"
-#include "output.h"
#include "target.h"
static bool begin_init_stmts (tree *, tree *);
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c
index a79448ea549..743f4752c1c 100644
--- a/gcc/cp/lex.c
+++ b/gcc/cp/lex.c
@@ -34,7 +34,6 @@ along with GCC; see the file COPYING3. If not see
#include "flags.h"
#include "c-family/c-pragma.h"
#include "c-family/c-objc.h"
-#include "output.h"
#include "tm_p.h"
#include "timevar.h"
diff --git a/gcc/cp/method.c b/gcc/cp/method.c
index 77f8839828a..6e2952131ba 100644
--- a/gcc/cp/method.c
+++ b/gcc/cp/method.c
@@ -29,7 +29,6 @@ along with GCC; see the file COPYING3. If not see
#include "tm.h"
#include "tree.h"
#include "cp-tree.h"
-#include "output.h"
#include "flags.h"
#include "toplev.h"
#include "tm_p.h"
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index 9fd8c84d923..547f9e21438 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -32,7 +32,6 @@ along with GCC; see the file COPYING3. If not see
#include "decl.h"
#include "flags.h"
#include "diagnostic-core.h"
-#include "output.h"
#include "target.h"
#include "cgraph.h"
#include "c-family/c-common.h"
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c
index fa994baf859..c55687bb95f 100644
--- a/gcc/cp/pt.c
+++ b/gcc/cp/pt.c
@@ -40,7 +40,6 @@ along with GCC; see the file COPYING3. If not see
#include "cp-objcp-common.h"
#include "tree-inline.h"
#include "decl.h"
-#include "output.h"
#include "toplev.h"
#include "timevar.h"
#include "tree-iterator.h"
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c
index bdeea713da8..e79b02e6837 100644
--- a/gcc/cp/rtti.c
+++ b/gcc/cp/rtti.c
@@ -28,7 +28,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "cp-tree.h"
#include "flags.h"
-#include "output.h"
#include "convert.h"
#include "target.h"
#include "c-family/c-pragma.h"
diff --git a/gcc/cp/search.c b/gcc/cp/search.c
index 19ef5967a80..e6d6be814c6 100644
--- a/gcc/cp/search.c
+++ b/gcc/cp/search.c
@@ -32,7 +32,6 @@ along with GCC; see the file COPYING3. If not see
#include "cp-tree.h"
#include "intl.h"
#include "flags.h"
-#include "output.h"
#include "toplev.h"
#include "target.h"