summaryrefslogtreecommitdiff
path: root/gcc/cp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/cxx-pretty-print.c3
-rw-r--r--gcc/cp/error.c1
-rw-r--r--gcc/cp/mangle.c1
-rw-r--r--gcc/cp/tree.c1
-rw-r--r--gcc/cp/typeck2.c1
6 files changed, 6 insertions, 6 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 8e6cd75ca0c..bfb4456a22d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-21 Steven Bosscher <steven@gcc.gnu.org>
+
+ * error.c, tree.c, typeck2.c, cxx-pretty-print.c, mangle.c:
+ Clean up redundant includes.
+
2010-05-20 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/30298
diff --git a/gcc/cp/cxx-pretty-print.c b/gcc/cp/cxx-pretty-print.c
index 02c512a012d..1c376670d60 100644
--- a/gcc/cp/cxx-pretty-print.c
+++ b/gcc/cp/cxx-pretty-print.c
@@ -23,10 +23,9 @@ along with GCC; see the file COPYING3. If not see
#include "system.h"
#include "coretypes.h"
#include "tm.h"
-#include "real.h"
#include "intl.h"
-#include "cxx-pretty-print.h"
#include "cp-tree.h"
+#include "cxx-pretty-print.h"
#include "toplev.h"
/* Translate if being used for diagnostics, but not for dump files or
diff --git a/gcc/cp/error.c b/gcc/cp/error.c
index b77a94c4ba8..b62cfcf662c 100644
--- a/gcc/cp/error.c
+++ b/gcc/cp/error.c
@@ -24,7 +24,6 @@ along with GCC; see the file COPYING3. If not see
#include "tm.h"
#include "tree.h"
#include "cp-tree.h"
-#include "real.h"
#include "toplev.h"
#include "flags.h"
#include "diagnostic.h"
diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c
index 707df8b899d..89ccbaf3f0c 100644
--- a/gcc/cp/mangle.c
+++ b/gcc/cp/mangle.c
@@ -52,7 +52,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "tm_p.h"
#include "cp-tree.h"
-#include "real.h"
#include "obstack.h"
#include "toplev.h"
#include "flags.h"
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c
index d3bba4c1e51..40a0c52d780 100644
--- a/gcc/cp/tree.c
+++ b/gcc/cp/tree.c
@@ -27,7 +27,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "cp-tree.h"
#include "flags.h"
-#include "real.h"
#include "rtl.h"
#include "toplev.h"
#include "insn-config.h"
diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c
index 4a92b7c5c81..b1336bf0a7f 100644
--- a/gcc/cp/typeck2.c
+++ b/gcc/cp/typeck2.c
@@ -38,7 +38,6 @@ along with GCC; see the file COPYING3. If not see
#include "toplev.h"
#include "output.h"
#include "diagnostic.h"
-#include "real.h"
static tree
process_init_constructor (tree type, tree init);