aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-12-08 06:38:10 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-12-08 06:38:10 +0000
commit6785b07787bb59d90a7e773ef3e494bfba4ba602 (patch)
treec4a87816194f63424ed70a616ab2fb06aa3cbd11 /gcc/dbxout.c
parent0e59fc3b92207cdf3c2f5faa24762e33e32265ce (diff)
downloadgcc-6785b07787bb59d90a7e773ef3e494bfba4ba602.zip
gcc-6785b07787bb59d90a7e773ef3e494bfba4ba602.tar.gz
gcc-6785b07787bb59d90a7e773ef3e494bfba4ba602.tar.bz2
* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.
From-SVN: r24181
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index c0e71b5..9e1bc16 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -163,10 +163,10 @@ static int source_label_number = 1;
#define FORCE_TEXT
#endif
-/* If there is a system stabs.h, use it. Otherwise, use our own. */
+/* If there is a system stab.h, use it. Otherwise, use our own. */
-#ifndef HAVE_STAB_H
-#include "gstab.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>