diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-25 17:28:05 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-25 17:28:05 +0000 |
commit | 91a0575c8acd1a5f36bfb40943cc4bfe429648b5 (patch) | |
tree | 7bed72f68f36940539feadb9ab20cf275cd45095 /gdb/partial-stab.h | |
parent | 09f705495147564472e9571b098a3f4d07e50740 (diff) | |
download | gdb-91a0575c8acd1a5f36bfb40943cc4bfe429648b5.zip gdb-91a0575c8acd1a5f36bfb40943cc4bfe429648b5.tar.gz gdb-91a0575c8acd1a5f36bfb40943cc4bfe429648b5.tar.bz2 |
* stabsread.c (STABS_CONTINUE, error_type), partial-stab.h:
AIX can use ? instead of \ for continuation. Deal with it.
Diffstat (limited to 'gdb/partial-stab.h')
-rw-r--r-- | gdb/partial-stab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h index 3094235..b5a9a01 100644 --- a/gdb/partial-stab.h +++ b/gdb/partial-stab.h @@ -463,7 +463,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Check for and handle cretinous dbx symbol name continuation! */ - if (*p == '\\') + if (*p == '\\' || (*p == '?' && p[1] == '\0')) p = next_symbol_text (); /* Point to the character after the name |