summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-17 23:49:43 +0000
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>2001-04-17 23:49:43 +0000
commitdc121bcabb2bde9f6a0d764d126e0295134fae2e (patch)
treea42f27eeb8eee4ffd1e0a20abbdb91468e3c829a /gcc/dbxout.c
parent264c399ee322553aad0bc598b3ed148cb1371357 (diff)
downloadgcc-dc121bcabb2bde9f6a0d764d126e0295134fae2e.tar.gz
* dbxout.c (N_OPT): Define if not available from <stab.h>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41395 138bc75d-0d04-0410-961f-82ee72b054a4
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__