Makefile.in (c-typeck.o): Delete on expr.h, insn-codes.h and $(RTL_H).
authorJeffrey A Law <law@cygnus.com>
Sun, 29 Mar 1998 11:54:09 +0000 (11:54 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 29 Mar 1998 11:54:09 +0000 (04:54 -0700)
        * Makefile.in (c-typeck.o): Delete on expr.h, insn-codes.h and
        $(RTL_H).
        (stor-layout.o): Likewise.
        * c-typeck.c: Include rtl.h and expr.h.
        * stor-layout.c: Likewise.

From-SVN: r18894

gcc/ChangeLog
gcc/Makefile.in
gcc/c-typeck.c
gcc/stor-layout.c

index dcc852bb017854d322fdc5af4dcbc364863db52f..a4e20621b7c81c28d07632495547887bdb1093b2 100644 (file)
@@ -1,5 +1,11 @@
 Sun Mar 29 12:45:23 1998  Jeffrey A Law  (law@cygnus.com)
 
+       * Makefile.in (c-typeck.o): Delete on expr.h, insn-codes.h and
+       $(RTL_H).
+       (stor-layout.o): Likewise.
+       * c-typeck.c: Include rtl.h and expr.h.
+       * stor-layout.c: Likewise.
+
        * cpplib.c (cpp_file_line_for_message): Delete unused parameter.
        All callers changed.
        (do_sccs): Wrap in an SCCS_DIRECTIVE ifdef.
index 3a0ea84fee29a9e8c0beb8bcfa392759549444da..9522c05704178925504e5431d67db1d2fb347d6d 100644 (file)
@@ -1241,7 +1241,7 @@ $(srcdir)/c-gperf.h: c-parse.gperf
 c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h flags.h \
     output.h
 c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \
-    output.h
+    output.h expr.h insn-codes.h $(RTL_H)
 c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H)
 c-lex.o : c-lex.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-lex.h c-tree.h \
     $(srcdir)/c-parse.h input.h flags.h $(srcdir)/c-gperf.h c-pragma.h
@@ -1322,7 +1322,8 @@ convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
 
 tree.o : tree.c $(CONFIG_H) system.h $(TREE_H) flags.h function.h
 print-tree.o : print-tree.c $(CONFIG_H) system.h $(TREE_H)
-stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h function.h
+stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \
+   function.h expr.h insn-codes.h $(RTL_H)
 fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h
 toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) \
    flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \
index ad2833ec1618fcd4eff5fe64d1802a82995ed273..b6480f0b17ffa2fdcc49aa9622ce4f48d4cf4d6c 100644 (file)
@@ -34,6 +34,8 @@ Boston, MA 02111-1307, USA.  */
 #include "c-tree.h"
 #include "flags.h"
 #include "output.h"
+#include "rtl.h"
+#include "expr.h"
 
 /* Nonzero if we've already printed a "missing braces around initializer"
    message within this initializer.  */
index 3c940006bb099e95f3fc75139f02267f85b26892..3510a8ff151d975014e70b3bf89196eaaa8521f0 100644 (file)
@@ -26,6 +26,8 @@ Boston, MA 02111-1307, USA.  */
 #include "flags.h"
 #include "except.h"
 #include "function.h"
+#include "rtl.h"
+#include "expr.h"
 
 #define CEIL(x,y) (((x) + (y) - 1) / (y))