* 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:
parent
7990a5784c
commit
d9147ab3ff
@ -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.
|
||||
|
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user