aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2010-05-25 22:31:19 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2010-05-25 22:31:19 +0000
commitafb67dc2a4f1420c56f125b69ab64da1c9141e2b (patch)
treeca14444b1bfc97565ffd31f49c42e71a59577dba
parent9b4690892c1b5ba6aec74d269bf03915134c67f0 (diff)
downloadgcc-afb67dc2a4f1420c56f125b69ab64da1c9141e2b.zip
gcc-afb67dc2a4f1420c56f125b69ab64da1c9141e2b.tar.gz
gcc-afb67dc2a4f1420c56f125b69ab64da1c9141e2b.tar.bz2
attribs.c: Do not include rtl.h.
* attribs.c: Do not include rtl.h. * Makefile.in: Update dependencies. From-SVN: r159845
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in2
-rw-r--r--gcc/attribs.c1
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9476e77..31d6e59 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-25 Steven Bosscher <steven@gcc.gnu.org>
+
+ * attribs.c: Do not include rtl.h.
+ * Makefile.in: Update dependencies.
+
2010-05-25 Anatoly Sokolov <aesok@post.ru>
* double-int.h (double_int_and): New.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index f9720e3..6e32d81 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2075,7 +2075,7 @@ c-cppbuiltin.o : c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
# A file used by all variants of C and some other languages.
attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
- $(FLAGS_H) $(TOPLEV_H) output.h $(RTL_H) $(GGC_H) $(TM_P_H) \
+ $(FLAGS_H) $(TOPLEV_H) output.h $(GGC_H) $(TM_P_H) \
$(TARGET_H) langhooks.h $(CPPLIB_H) $(PLUGIN_H)
c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) langhooks.h \
diff --git a/gcc/attribs.c b/gcc/attribs.c
index 4d91a0d..57f367d 100644
--- a/gcc/attribs.c
+++ b/gcc/attribs.c
@@ -27,7 +27,6 @@ along with GCC; see the file COPYING3. If not see
#include "flags.h"
#include "toplev.h"
#include "output.h"
-#include "rtl.h"
#include "ggc.h"
#include "tm_p.h"
#include "cpplib.h"