diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2014-12-08 08:27:56 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2014-12-08 08:27:56 (GMT) |
commit | 096f123b87437cf25cd008a6dea710286fbefcf0 (patch) | |
tree | a79c3b401b44d5aa513e3931b8422134d2f24936 /tools/d2c | |
parent | 0a7b9b66bdcf386a36ec13ec480b52aa17406385 (diff) |
Supported new ARMv7 instructions.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@437 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'tools/d2c')
-rw-r--r-- | tools/d2c/d2c_tok.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/d2c/d2c_tok.l b/tools/d2c/d2c_tok.l index 7e1571c..b7e50fd 100644 --- a/tools/d2c/d2c_tok.l +++ b/tools/d2c/d2c_tok.l @@ -115,7 +115,7 @@ void free_flex_memory(void) ; <conv_content>"}" { BEGIN(encoding_content); } <conv_content>[ \t\n]+ { } -<conv_content>[A-Za-z][A-Za-z0-9_]* { +<conv_content>[A-Za-z_][A-Za-z0-9_]* { if (strcmp(yytext, "NOT") == 0) return NOT; else { |