Commit f3a8030a by Kaveh R. Ghazi Committed by Kaveh Ghazi

Makefile.in (insn-output.o): Depend on $(EXPR_H).

	* Makefile.in (insn-output.o): Depend on $(EXPR_H).

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

From-SVN: r41258
parent 68896bf9
2001-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 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. * output.h (assemble_real): Declare if REAL_VALUE_TYPE is defined.
* real.h (ereal_atof, real_value_truncate, target_isnan, * real.h (ereal_atof, real_value_truncate, target_isnan,
......
...@@ -1709,7 +1709,7 @@ s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change ...@@ -1709,7 +1709,7 @@ s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change
touch s-attrtab touch s-attrtab
insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) $(GGC_H) $(REGS_H) real.h \ 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 \ output.h $(RECOG_H) function.h $(SYSTEM_H) toplev.h flags.h \
$(TM_P_H) $(TM_P_H)
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
......
...@@ -222,6 +222,7 @@ output_prologue () ...@@ -222,6 +222,7 @@ output_prologue ()
printf ("#include \"flags.h\"\n"); printf ("#include \"flags.h\"\n");
printf ("#include \"ggc.h\"\n"); printf ("#include \"ggc.h\"\n");
printf ("#include \"rtl.h\"\n"); printf ("#include \"rtl.h\"\n");
printf ("#include \"expr.h\"\n");
printf ("#include \"tm_p.h\"\n"); printf ("#include \"tm_p.h\"\n");
printf ("#include \"function.h\"\n"); printf ("#include \"function.h\"\n");
printf ("#include \"regs.h\"\n"); printf ("#include \"regs.h\"\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment