PR binutils/5529
* rclex.c (yylex): Also allow the hypen character.
This commit is contained in:
parent
a0a21afef5
commit
e36ea2deae
2 changed files with 8 additions and 2 deletions
|
@ -847,7 +847,7 @@ yylex (void)
|
|||
while ((ch = rclex_peekch ()) != -1
|
||||
&& (ISIDNUM (ch) || ch == '$' || ch == '.'
|
||||
|| ch == ':' || ch == '\\' || ch == '/'
|
||||
|| ch == '_')
|
||||
|| ch == '_' || ch == '-')
|
||||
)
|
||||
rclex_readch ();
|
||||
ch = IGNORE_CPP (rclex_translatekeyword (rclex_tok));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue