diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-05-19 18:24:07 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-05-19 11:24:07 -0700 |
commit | c73912726cd1616376e86af419d32fa333c92e95 (patch) | |
tree | 64b67e156ef4621ca2ceb97b5f188075c4ca40ea /gcc/config | |
parent | 5a11e05b695e7eff595648f37a643fd6bb34e70e (diff) | |
download | gcc-c73912726cd1616376e86af419d32fa333c92e95.zip gcc-c73912726cd1616376e86af419d32fa333c92e95.tar.gz gcc-c73912726cd1616376e86af419d32fa333c92e95.tar.bz2 |
Finish incomplete change started by Kenner.
* configure.in (*-*-linux-gnu*): Delete NO_STAB_H from xm_defines.
(powerpcle-*-cygwin32): Delete xm_defines.
* final.c, mips-tfile.c, xcoffout.c, config/mips/mips.c: Use
HAVE_STAB_H instead of NO_STAB_H.
* config/xm-linux.h (NO_STAB_H): Delete.
(HAVE_STAB_H): Undefine.
* config/i386/xm-go32.h (NO_STAB_H): Delete.
From-SVN: r19886
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/xm-go32.h | 2 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 | ||||
-rw-r--r-- | gcc/config/xm-linux.h | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/i386/xm-go32.h b/gcc/config/i386/xm-go32.h index 3cfd6b3..c44e73ea 100644 --- a/gcc/config/i386/xm-go32.h +++ b/gcc/config/i386/xm-go32.h @@ -20,8 +20,6 @@ Boston, MA 02111-1307, USA. */ #define __MSDOS__ 1 -#define NO_STAB_H - #include "i386/xm-i386.h" /* Use semicolons to separate elements of a path. */ diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index fce5dc8..0ca03de 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -66,7 +66,7 @@ Boston, MA 02111-1307, USA. */ #define X_OK 1 #endif -#if defined(USG) || defined(NO_STAB_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> /* On BSD, use the system's stab.h. */ diff --git a/gcc/config/xm-linux.h b/gcc/config/xm-linux.h index 9a3838b..2cffdb7 100644 --- a/gcc/config/xm-linux.h +++ b/gcc/config/xm-linux.h @@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA. */ /* We do have one, but I'd like to use the one come with gcc since we have been doing that for a long time with USG defined. H.J. */ -#define NO_STAB_H +#undef HAVE_STAB_H #undef BSTRING #define BSTRING |