aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGabriel Dos Reis <dosreis@cmla.ens-cachan.fr>1999-12-30 06:58:56 +0100
committerGabriel Dos Reis <gdr@gcc.gnu.org>1999-12-30 05:58:56 +0000
commit671d2ac6635f785892d686ce06d6e811662468cf (patch)
tree676d30175b1da837fdff164987c16806247cb8a3 /gcc
parent7fb1283fc7fadaccf77c5a891ae8569c12b51782 (diff)
downloadgcc-671d2ac6635f785892d686ce06d6e811662468cf.zip
gcc-671d2ac6635f785892d686ce06d6e811662468cf.tar.gz
gcc-671d2ac6635f785892d686ce06d6e811662468cf.tar.bz2
dwarfout.c: Include "frame.h"
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. From-SVN: r31131
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/Makefile.in7
-rw-r--r--gcc/dwarf2out.c1
-rw-r--r--gcc/dwarfout.c1
4 files changed, 13 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b5be793..a26dfd2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 7c606569..94dc28c 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 f4fae33..0b0e839 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 <assert.h> 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 f5b0fb5..af9fec0 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)