Makefile.in (insn-output.o): Depend on $(EXPR_H).
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Wed, 11 Apr 2001 15:57:31 +0000 (15:57 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 11 Apr 2001 15:57:31 +0000 (15:57 +0000)
* Makefile.in (insn-output.o): Depend on $(EXPR_H).

* genoutput.c (output_prologue): Include expr.h in insn-output.c.

From-SVN: r41258

gcc/ChangeLog
gcc/Makefile.in
gcc/genoutput.c

index 9271319a21f884237644218fd05206d17b3ed74e..2f0ab448b1d57258b1792adb40a7cfa545ce364a 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * Makefile.in (insn-output.o): Depend on $(EXPR_H).
+
+       * genoutput.c (output_prologue): Include expr.h in insn-output.c.
+
 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * output.h (assemble_real): Declare if REAL_VALUE_TYPE is defined.
index 935c04f8038df739d81c187b756b2077ad5ccd88..c94eb08f4628b022e78f98796c42fa88f372ca61 100644 (file)
@@ -1709,7 +1709,7 @@ s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change
        touch s-attrtab
 
 insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) $(GGC_H) $(REGS_H) real.h \
-    conditions.h hard-reg-set.h insn-config.h $(INSN_ATTR_H) \
+    conditions.h hard-reg-set.h insn-config.h $(INSN_ATTR_H) $(EXPR_H) \
     output.h $(RECOG_H) function.h $(SYSTEM_H) toplev.h flags.h \
     $(TM_P_H)
        $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
index 724f011fb8c60989ba179859ce1593c33dd5e030..c2cb124a536f8e19b8d4d20f1ea0f7f4465eae43 100644 (file)
@@ -222,6 +222,7 @@ output_prologue ()
   printf ("#include \"flags.h\"\n");
   printf ("#include \"ggc.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"expr.h\"\n");
   printf ("#include \"tm_p.h\"\n");
   printf ("#include \"function.h\"\n");
   printf ("#include \"regs.h\"\n");