This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] i386-c.c does not need rtl.h


...so let's not include it here, either.

Will commit as obvious in a bit.

Ciao!
Steven

        * config/i386/i386-c.c: Do not include rtl.h.
        * config/i386/t-i386: Update dependencies.

Index: config/i386/i386-c.c
===================================================================
--- config/i386/i386-c.c        (revision 159808)
+++ config/i386/i386-c.c        (working copy)
@@ -22,7 +22,6 @@ along with GCC; see the file COPYING3.
 #include "system.h"
 #include "coretypes.h"
 #include "tm.h"
-#include "rtl.h"
 #include "tree.h"
 #include "tm_p.h"
 #include "flags.h"
Index: config/i386/t-i386
===================================================================
--- config/i386/t-i386  (revision 159808)
+++ config/i386/t-i386  (working copy)
@@ -27,7 +27,7 @@ i386.o: $(CONFIG_H) $(SYSTEM_H) coretype

 i386-c.o: $(srcdir)/config/i386/i386-c.c \
   $(srcdir)/config/i386/i386-protos.h $(CONFIG_H) $(SYSTEM_H) coretypes.h \
-  $(TM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(FLAGS_H) $(C_COMMON_H) $(GGC_H) \
+  $(TM_H) $(TREE_H) $(TM_P_H) $(FLAGS_H) $(C_COMMON_H) $(GGC_H) \
   $(TARGET_H) $(TARGET_DEF_H) $(CPPLIB_H) $(C_PRAGMA_H)
        $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
                $(srcdir)/config/i386/i386-c.c


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]