From: steven Date: Tue, 25 May 2010 22:31:19 +0000 (+0000) Subject: * attribs.c: Do not include rtl.h. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ed880f8d15b51223249156bea69bf4bfef1b2e0;p=thirdparty%2Fgcc.git * attribs.c: Do not include rtl.h. * Makefile.in: Update dependencies. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159845 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9476e77f74a1..31d6e598edbf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-05-25 Steven Bosscher + + * attribs.c: Do not include rtl.h. + * Makefile.in: Update dependencies. + 2010-05-25 Anatoly Sokolov * double-int.h (double_int_and): New. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index f9720e36e506..6e32d8115f23 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 4d91a0d65250..57f367d581e8 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"