aboutsummaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1998-05-19 18:24:07 +0000
committerJim Wilson <wilson@gcc.gnu.org>1998-05-19 11:24:07 -0700
commitc73912726cd1616376e86af419d32fa333c92e95 (patch)
tree64b67e156ef4621ca2ceb97b5f188075c4ca40ea /gcc/final.c
parent5a11e05b695e7eff595648f37a643fd6bb34e70e (diff)
downloadgcc-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/final.c')
-rw-r--r--gcc/final.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 013dca7..9dac137 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -73,7 +73,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)
+#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. */