* Makefile.in (insn-output.o): Depend on $(EXPR_H).
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Apr 2001 15:57:31 +0000 (15:57 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Apr 2001 15:57:31 +0000 (15:57 +0000)
* genoutput.c (output_prologue): Include expr.h in insn-output.c.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41258 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 9271319..2f0ab44 100644 (file)
@@ -1,5 +1,11 @@
 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.
 
        * real.h (ereal_atof, real_value_truncate, target_isnan,
index 935c04f..c94eb08 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 724f011..c2cb124 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");