summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2010-11-16 13:57:21 +0000
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>2010-11-16 13:57:21 +0000
commit02311745e3321e776d46cd9cd70099fda55859b8 (patch)
treee32cf94d8217cd7e5bb1657f29c182393e3cc00c
parent0fea623c6dfa3060c3df2a7ff1e01e0bb1578376 (diff)
downloadgcc-02311745e3321e776d46cd9cd70099fda55859b8.tar.gz
* bitmap.c: Delete unnecessary includes.
* ebitmap.c: Likewise. * et-forest.c: Likewise. * sreal.c: Likewise. * statistics.c: Likewise. * stringpool.c: Likewise. * double-int.c: Add comment for inclusion of tm.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166797 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog10
-rw-r--r--gcc/bitmap.c3
-rw-r--r--gcc/double-int.c2
-rw-r--r--gcc/ebitmap.c4
-rw-r--r--gcc/et-forest.c1
-rw-r--r--gcc/sreal.c1
-rw-r--r--gcc/statistics.c1
-rw-r--r--gcc/stringpool.c1
8 files changed, 11 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3329ae34ca1..273b853474b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-16 Nathan Froyd <froydnj@codesourcery.com>
+
+ * bitmap.c: Delete unnecessary includes.
+ * ebitmap.c: Likewise.
+ * et-forest.c: Likewise.
+ * sreal.c: Likewise.
+ * statistics.c: Likewise.
+ * stringpool.c: Likewise.
+ * double-int.c: Add comment for inclusion of tm.h.
+
2010-11-16 Richard Guenther <rguenther@suse.de>
* tree-ssa-sccvn.c (visit_unary_op): Rename to ...
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index f2fd2bdb510..7f533ed0844 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -21,9 +21,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
-#include "rtl.h"
-#include "flags.h"
#include "obstack.h"
#include "ggc.h"
#include "bitmap.h"
diff --git a/gcc/double-int.c b/gcc/double-int.c
index f3501a5c2c0..9e32b398ce7 100644
--- a/gcc/double-int.c
+++ b/gcc/double-int.c
@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
+#include "tm.h" /* For SHIFT_COUNT_TRUNCATED. */
#include "tree.h"
#include "toplev.h"
diff --git a/gcc/ebitmap.c b/gcc/ebitmap.c
index cb52468fed6..c57d141ddb3 100644
--- a/gcc/ebitmap.c
+++ b/gcc/ebitmap.c
@@ -21,10 +21,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
-#include "rtl.h"
-#include "flags.h"
-#include "obstack.h"
#include "ebitmap.h"
/* The ebitmap data structure is a sparse bitmap structure that works
diff --git a/gcc/et-forest.c b/gcc/et-forest.c
index 94757c0afa9..b35d063c5f8 100644
--- a/gcc/et-forest.c
+++ b/gcc/et-forest.c
@@ -26,7 +26,6 @@ License along with libiberty; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
#include "et-forest.h"
#include "alloc-pool.h"
diff --git a/gcc/sreal.c b/gcc/sreal.c
index 415a02c8352..df35ddd444f 100644
--- a/gcc/sreal.c
+++ b/gcc/sreal.c
@@ -52,7 +52,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
#include "sreal.h"
static inline void copy (sreal *, sreal *);
diff --git a/gcc/statistics.c b/gcc/statistics.c
index b7bfd45dd97..873bbc31cf6 100644
--- a/gcc/statistics.c
+++ b/gcc/statistics.c
@@ -26,7 +26,6 @@ along with GCC; see the file COPYING3. If not see
#include "tree-dump.h"
#include "statistics.h"
#include "hashtab.h"
-#include "tm.h"
#include "function.h"
static int statistics_dump_nr;
diff --git a/gcc/stringpool.c b/gcc/stringpool.c
index 8d45a26befc..747db177b2a 100644
--- a/gcc/stringpool.c
+++ b/gcc/stringpool.c
@@ -29,7 +29,6 @@ along with GCC; see the file COPYING3. If not see
#include "config.h"
#include "system.h"
#include "coretypes.h"
-#include "tm.h"
#include "ggc.h"
#include "ggc-internal.h"
#include "tree.h"