From: Kaveh R. Ghazi Date: Tue, 8 Dec 1998 06:38:10 +0000 (+0000) Subject: * dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6785b07787bb59d90a7e773ef3e494bfba4ba602;p=gcc.git * dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set. From-SVN: r24181 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d57da9b17c..78a1b393dfa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Dec 8 09:28:36 1998 Kaveh R. Ghazi + + * dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set. + 1998-12-08 Ulrich Drepper * configure.in: Test for availability of putc_unlocked, fputc_unlocked, diff --git a/gcc/dbxout.c b/gcc/dbxout.c index c0e71b52469..9e1bc16b0f6 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