diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2001-05-01 01:58:32 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2001-05-01 01:58:32 +0000 |
commit | 7719ffbf1ded6d87084c813e56bddd91136dd9f3 (patch) | |
tree | 61dda7eaae0598174891f72c3dedfbf248220c39 /gcc/final.c | |
parent | e71b34aa4edbf78ac94eaed3d091f187387a0abe (diff) | |
download | gcc-7719ffbf1ded6d87084c813e56bddd91136dd9f3.zip gcc-7719ffbf1ded6d87084c813e56bddd91136dd9f3.tar.gz gcc-7719ffbf1ded6d87084c813e56bddd91136dd9f3.tar.bz2 |
dbxout.c, [...]: Always include gstab.h, not system stab.h.
* dbxout.c, mips-tfile.c, config/mips/mips.c, xcoffout.c:
Always include gstab.h, not system stab.h. Don't provide
default definitions of N_CATCH or N_OPT. Always use the
gstab.h variant of STAB_CODE_TYPE.
* final.c: Don't include stab.h/gstab.h at all, or provide
defaults for N_SLINE and N_SOL.
* xcoffout.c: Can assume N_MAIN, N_DSLINE, N_BSLINE, N_BINCL,
N_EINCL, N_EXCL, N_M2C, N_SCOPE, N_CATCH, and N_OPT are
available.
* sdbout.c: Always include gsyms.h instead of system syms.h.
* configure.in: No need to check for stab.h.
* configure, config.in: Regenerate.
* Makefile.in (final.o): Don't depend on gstab.h.
From-SVN: r41713
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/final.c b/gcc/final.c index 88519bd..a681cee 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -66,15 +66,8 @@ Boston, MA 02111-1307, USA. */ #include "intl.h" #include "basic-block.h" -/* 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 (HAVE_STAB_H) -#include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */ -#else -#include <stab.h> -#endif - #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */ #ifdef XCOFF_DEBUGGING_INFO @@ -93,16 +86,6 @@ Boston, MA 02111-1307, USA. */ #include "sdbout.h" #endif -/* .stabd code for line number. */ -#ifndef N_SLINE -#define N_SLINE 0x44 -#endif - -/* .stabs code for included file name. */ -#ifndef N_SOL -#define N_SOL 0x84 -#endif - /* If we aren't using cc0, CC_STATUS_INIT shouldn't exist. So define a null default for it to save conditionalization later. */ #ifndef CC_STATUS_INIT |