1999-12-30 Gabriel Dos Reis <dosreis@cmla.ens-cachan.fr>
authorgdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Dec 1999 05:58:56 +0000 (05:58 +0000)
committergdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 30 Dec 1999 05:58:56 +0000 (05:58 +0000)
        * dwarfout.c: Include "frame.h"
        * dwarf2out.c: Likewise.
        * Makefile.in (dwarfout.o): Depend on frame.h
        (dwarf2out.o): Likewise.

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

gcc/ChangeLog
gcc/Makefile.in
gcc/dwarf2out.c
gcc/dwarfout.c

index b5be793..a26dfd2 100644 (file)
@@ -1,3 +1,10 @@
+1999-12-30  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
+
+       * 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" <martin@loewis.home.cs.tu-berlin.de>
 
        Restore i386 binary compatibility in Dwarf EH info.
index 7c60656..94dc28c 100644 (file)
@@ -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 \
index f4fae33..0b0e839 100644 (file)
@@ -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 <assert.h> in GCC source, since that would include
    GCC's assert.h, which may not be compatible with the host compiler.  */
index f5b0fb5..af9fec0 100644 (file)
@@ -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)