* dbxout.c (N_OPT): Define if not available from <stab.h>
authorLoren J. Rittle <ljrittle@acm.org>
Tue, 17 Apr 2001 23:49:43 +0000 (23:49 +0000)
committerLoren J. Rittle <ljrittle@gcc.gnu.org>
Tue, 17 Apr 2001 23:49:43 +0000 (23:49 +0000)
From-SVN: r41395

gcc/ChangeLog
gcc/dbxout.c

index 4beb748a8282696a6e8074f01651c318423b6995..aa364d026eeeed06de871d3e636a0404a2c7d612 100644 (file)
@@ -1,3 +1,7 @@
+2001-04-17  Loren J. Rittle  <ljrittle@acm.org>
+
+       * dbxout.c (N_OPT): Define if not available from <stab.h>
+
 2001-04-17  John David Anglin  <dave@hiauly1.hia.nrc.ca>
 
        * vax.h (PROMOTE_PROTOTYPES): Define for compatibility with system
index 75bcbdc5bfac4bd6bdc5a93bf9183d22fdc769bf..4b58f0e6d507f9d64257f3c806a2c80cec76fb9c 100644 (file)
@@ -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__