OSDN Git Service

* dbxout.c (N_OPT): Define if not available from <stab.h>
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Apr 2001 23:49:43 +0000 (23:49 +0000)
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Apr 2001 23:49:43 +0000 (23:49 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41395 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/dbxout.c

index 4beb748..aa364d0 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 75bcbdc..4b58f0e 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__