summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorLoren J. Rittle <ljrittle@acm.org>2001-04-17 23:49:43 +0000
committerLoren J. Rittle <ljrittle@gcc.gnu.org>2001-04-17 23:49:43 +0000
commit7848c238063060437df850020d3c041b93c22ecc (patch)
treea42f27eeb8eee4ffd1e0a20abbdb91468e3c829a /gcc/dbxout.c
parent996f4bb1cdb1c2286bd13b706d31e43a9e4ea3a2 (diff)
downloadgcc-7848c238063060437df850020d3c041b93c22ecc.tar.gz
* dbxout.c (N_OPT): Define if not available from <stab.h>
From-SVN: r41395
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c5
1 files changed, 5 insertions, 0 deletions
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__