summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2002-12-20 04:54:30 +0000
committerDoug Evans <dje@google.com>2002-12-20 04:54:30 +0000
commitd9147ab3ffbb447e22f75c061ae80028acde56e4 (patch)
tree25ee0f37e6c29e831aad2f364ab0ea8d2a1828a2
parent7990a5784cbe840a25794a4c3c178d93a2229c85 (diff)
downloadbinutils-gdb-d9147ab3ffbb447e22f75c061ae80028acde56e4.tar.gz
* cgen-asm.c (cgen_parse_keyword): Added underscore to symbol character
check to fix false keyword trigger with names such as <keyword>_foo.
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/cgen-asm.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 66221d8ed25..f9508749344 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -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.
diff --git a/opcodes/cgen-asm.c b/opcodes/cgen-asm.c
index 05b62bf49e1..c71c70de08e 100644
--- a/opcodes/cgen-asm.c
+++ b/opcodes/cgen-asm.c
@@ -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))