diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-01-08 09:10:47 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2008-01-08 09:10:47 +0000 |
commit | aeafac0cd393cbb01b78e71cdd6268d12950c48a (patch) | |
tree | 1253042abe60afff0b6f3baf82d5a8707ed78175 /binutils | |
parent | 9396508db2edbe0bf16cab534c07037b112908e4 (diff) | |
download | gdb-aeafac0cd393cbb01b78e71cdd6268d12950c48a.zip gdb-aeafac0cd393cbb01b78e71cdd6268d12950c48a.tar.gz gdb-aeafac0cd393cbb01b78e71cdd6268d12950c48a.tar.bz2 |
binutils/rclex.c: (yylex): Add ':', '_', '\\', and '/' to post characters
for name tokens. PR/5529.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/rclex.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 25e9ff2..d3c1d32 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2008-01-08 Kai Tietz <kai.tietz@onevision.com> + + * binutils/rclex.c: (yylex): Add ':', '_', '\\', and '/' to post + characters for name tokens. PR/5529. + 2008-01-04 Greg McGary <greg@mcgary.org> * prdbg.c (print_vma): Print as long long, if host supports it. diff --git a/binutils/rclex.c b/binutils/rclex.c index 5922106..29f365f 100644 --- a/binutils/rclex.c +++ b/binutils/rclex.c @@ -844,7 +844,11 @@ yylex (void) default: if (ISIDST (ch) || ch=='$') { - while ((ch = rclex_peekch ()) != -1 && (ISIDNUM (ch) || ch == '$' || ch == '.')) + while ((ch = rclex_peekch ()) != -1 + && (ISIDNUM (ch) || ch == '$' || ch == '.' + || ch == ':' || ch == '\\' || ch == '/' + || ch == '_') + ) rclex_readch (); ch = IGNORE_CPP (rclex_translatekeyword (rclex_tok)); if (ch == STRING) |