* cgen-asm.c (cgen_parse_keyword): Added underscore to symbol character

check to fix false keyword trigger with names such as <keyword>_foo.
This commit is contained in:
Doug Evans 2002-12-20 04:54:30 +00:00
parent 7990a5784c
commit d9147ab3ff
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-12-19 Nick Kelsey <nickk@ubicom.com>
* cgen-asm.c (cgen_parse_keyword): Added underscore to symbol character
check to fix false keyword trigger with names such as <keyword>_foo.
2002-12-19 Doug Evans <dje@sebabeach.org>
* Makefile.am (CGEN_CPUS): New variable.

View File

@ -225,7 +225,9 @@ cgen_parse_keyword (cd, strp, keyword_table, valuep)
/* Allow letters, digits, and any special characters. */
while (((p - start) < (int) sizeof (buf))
&& *p
&& (ISALNUM (*p) || strchr (keyword_table->nonalpha_chars, *p)))
&& (ISALNUM (*p)
|| *p == '_'
|| strchr (keyword_table->nonalpha_chars, *p)))
++p;
if (p - start >= (int) sizeof (buf))