diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-19 18:24:07 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-19 18:24:07 +0000 |
commit | f460763867913a61e302d9e2cdf86642fb64d546 (patch) | |
tree | 64b67e156ef4621ca2ceb97b5f188075c4ca40ea /gcc/xcoffout.c | |
parent | c8075df7c0acac4444933547a98c51c119f4b1d8 (diff) | |
download | gcc-f460763867913a61e302d9e2cdf86642fb64d546.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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19886 138bc75d-0d04-0410-961f-82ee72b054a4
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> |