From: Loren J. Rittle Date: Tue, 17 Apr 2001 23:49:43 +0000 (+0000) Subject: * dbxout.c (N_OPT): Define if not available from X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7848c238063060437df850020d3c041b93c22ecc;p=gcc.git * dbxout.c (N_OPT): Define if not available from From-SVN: r41395 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4beb748a828..aa364d026ee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-04-17 Loren J. Rittle + + * dbxout.c (N_OPT): Define if not available from + 2001-04-17 John David Anglin * vax.h (PROMOTE_PROTOTYPES): Define for compatibility with system diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 75bcbdc5bfa..4b58f0e6d50 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -183,6 +183,11 @@ static int source_label_number = 1; #ifndef N_CATCH #define N_CATCH 0x54 #endif + +/* This is a Solaris extension we need to reference in this file. */ +#ifndef N_OPT +#define N_OPT 0x3c +#endif #endif #ifdef __GNU_STAB__