diff options
author | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-18 07:11:42 +0000 |
---|---|---|
committer | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-18 07:11:42 +0000 |
commit | 744d34415d968f9b829fa0af9468492bd4f370ef (patch) | |
tree | 9bc66e2c9a48a9be8b799e6cfc6d919be7ece410 /gcc/final.c | |
parent | 36a1409df21fa1dab5537de42fbb0b29a925d779 (diff) | |
download | gcc-744d34415d968f9b829fa0af9468492bd4f370ef.tar.gz |
* dwarfout.h, dwarf2out.h, dbxout.h, sdbout.h: New files.
Prototypes for externally used functions in respective C files.
* dwarfout.c, dbxout.c, dwarf2out.c, sdbout.c, toplev,c,
final.c: Include above files.
* Makefile.in (toplev.o): Add dependency for above four headers.
(final.o): Likewise.
(dwarfout.o, dbxout.o, dwarf2out.o, sdbout.o): Depend on four
respective header files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19835 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/final.c b/gcc/final.c index 89436e4fb58..013dca75574 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -72,6 +72,7 @@ Boston, MA 02111-1307, USA. */ /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */ #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO) +#include "dbxout.h" #if defined (USG) || defined (NO_STAB_H) #include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */ #else @@ -83,6 +84,18 @@ Boston, MA 02111-1307, USA. */ #include "xcoffout.h" #endif +#ifdef DWARF_DEBUGGING_INFO +#include "dwarfout.h" +#endif + +#if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO) +#include "dwarf2out.h" +#endif + +#ifdef SDB_DEBUGGING_INFO +#include "sdbout.h" +#endif + /* .stabd code for line number. */ #ifndef N_SLINE #define N_SLINE 0x44 |