PR binutils/5529

* rclex.c (yylex): Also allow the hypen character.
This commit is contained in:
Nick Clifton 2008-01-28 16:42:02 +00:00
parent a0a21afef5
commit e36ea2deae
2 changed files with 8 additions and 2 deletions

View file

@ -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));