diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b5be7937566..a26dfd269f0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +1999-12-30 Gabriel Dos Reis + + * dwarfout.c: Include "frame.h" + * dwarf2out.c: Likewise. + * Makefile.in (dwarfout.o): Depend on frame.h + (dwarf2out.o): Likewise. + 1999-12-29 "Martin v. Loewis" Restore i386 binary compatibility in Dwarf EH info. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 7c606569a97..94dc28ce9dc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1465,7 +1465,7 @@ stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \ fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h \ $(RTL_H) ggc.h diagnostic.o : $(CONFIG_H) system.h $(TREE_H) $(RTL_H) tm_p.h flags.h \ - input.h insn-attr.h insn-codes.h insn-config.h toplev.h intl.h + input.h insn-attr.h insn-codes.h insn-config.h toplev.h intl.h toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \ flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \ insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \ @@ -1519,11 +1519,12 @@ sdbout.o : sdbout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h except.h \ insn-config.h $(srcdir)/../include/obstack.h xcoffout.h c-pragma.h \ sdbout.h toplev.h dwarfout.o : dwarfout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf.h \ - flags.h insn-config.h reload.h output.h defaults.h toplev.h dwarfout.h + flags.h insn-config.h reload.h output.h defaults.h toplev.h dwarfout.h \ + frame.h dwarf2out.o : dwarf2out.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf2.h \ flags.h insn-config.h reload.h output.h defaults.h \ hard-reg-set.h $(REGS_H) $(EXPR_H) toplev.h dwarf2out.h dyn-string.h \ - ggc.h except.h + ggc.h except.h frame.h xcoffout.o : xcoffout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) xcoffout.h \ flags.h toplev.h output.h dbxout.h ggc.h emit-rtl.o : emit-rtl.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \ diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index f4fae3341a0..0b0e839582a 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -55,6 +55,7 @@ Boston, MA 02111-1307, USA. */ #include "toplev.h" #include "dyn-string.h" #include "ggc.h" +#include "frame.h" /* We cannot use in GCC source, since that would include GCC's assert.h, which may not be compatible with the host compiler. */ diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index f5b0fb5a75b..af9fec09816 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -35,6 +35,7 @@ Boston, MA 02111-1307, USA. */ #include "dwarfout.h" #include "toplev.h" #include "tm_p.h" +#include "frame.h" #if defined(DWARF_TIMESTAMPS) #if !defined(POSIX)