From: Geoffrey Keating Date: Thu, 14 Jun 2001 20:38:42 +0000 (+0000) Subject: Index: opcodes/ChangeLog X-Git-Tag: gdb_5_1-2001-07-29-branchpoint~77 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=5a5f43a0b954df170d07390a16b3483dbcede42f;p=newlib-cygwin.git Index: opcodes/ChangeLog 2001-06-13 Geoffrey Keating * cgen-asm.c (cgen_parse_keyword): When looking for the boundaries of a keyword, allow any special characters that are actually in one of the allowed keyword. * cgen-opc.c (cgen_keyword_add): Add any special characters to the nonalpha_chars field. Index: cgen/ChangeLog 2001-06-13 Geoffrey Keating * desc.scm ( 'gen-defn): Add extra zero into CGEN_KEYWORD_ENTRY initializers. Index: include/opcode/ChangeLog 2001-06-13 Geoffrey Keating * cgen.h (cgen_keyword): Add nonalpha_chars field. --- diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index ed883d019..71c2dac75 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2001-06-14 Geoffrey Keating + + * cgen.h (cgen_keyword): Add nonalpha_chars field. + 2001-05-23 Thiemo Seufer * mips.h (CPU_R12000): Define. diff --git a/include/opcode/cgen.h b/include/opcode/cgen.h index 8d3c310ed..c13c4d9e8 100644 --- a/include/opcode/cgen.h +++ b/include/opcode/cgen.h @@ -513,6 +513,11 @@ typedef struct cgen_keyword /* Pointer to null keyword "" entry if present. */ const CGEN_KEYWORD_ENTRY *null_entry; + + /* String containing non-alphanumeric characters used + in keywords. + At present, the highest number of entries used is 1. */ + char nonalpha_chars[8]; } CGEN_KEYWORD; /* Structure used for searching. */