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/xcoffout.c | |
parent | 5a11e05b695e7eff595648f37a643fd6bb34e70e (diff) | |
download | gcc-c73912726cd1616376e86af419d32fa333c92e95.tar.gz |
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/xcoffout.c')
-rw-r--r-- | gcc/xcoffout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c index 90ed5e3da62..0c44dec781f 100644 --- a/gcc/xcoffout.c +++ b/gcc/xcoffout.c @@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA. */ #include "xcoffout.h" -#if defined (USG) || defined (NO_STAB_H) +#if defined (USG) || !defined (HAVE_STAB_H) #include "gstab.h" #else #include <stab.h> |