From: Geoff Keating Date: Thu, 14 Jun 2001 20:38:42 +0000 (+0000) Subject: Index: opcodes/ChangeLog X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=423d78d215c8a0d606373b14c9928e154d3532b7;p=cgen.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/ChangeLog b/ChangeLog index df3f31c..05ab5df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-06-14 Geoffrey Keating + * desc.scm ( 'gen-defn): Add extra zero into + CGEN_KEYWORD_ENTRY initializers. + * gas-test.scm (gen-gas-test): Create 8 testcases, not just 5. ( 'test-data): Involve both the index and the hardware in testcase generation. diff --git a/desc.scm b/desc.scm index 3d7dd1b..ddcdfda 100644 --- a/desc.scm +++ b/desc.scm @@ -137,7 +137,7 @@ static const CGEN_ATTR_ENTRY bool_attr[] = " =\n{\n" " & " (gen-hw-asm-ref (elm-get self 'name)) "_entries[0],\n" " " (number->string (length (elm-get self 'values))) ",\n" - " 0, 0, 0, 0\n" + " 0, 0, 0, 0, \"\"\n" "};\n\n" ) )