diff options
Diffstat (limited to 'src/usr/hwpf/ifcompiler/initCompiler.lex')
| -rwxr-xr-x | src/usr/hwpf/ifcompiler/initCompiler.lex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/usr/hwpf/ifcompiler/initCompiler.lex b/src/usr/hwpf/ifcompiler/initCompiler.lex index 9abdaded3..cc811e017 100755 --- a/src/usr/hwpf/ifcompiler/initCompiler.lex +++ b/src/usr/hwpf/ifcompiler/initCompiler.lex @@ -24,6 +24,7 @@ // dg02 SW058986 dgilbert 02/28/11 More noticeable fail for missing col headers // andrewg 09/19/11 Updates based on review // camvanng 11/08/11 Added support for attribute enums +// camvanng 11/16/11 Support system & target attributes // End Change Log *********************************************************************************/ /** * @file initCompiler.lex @@ -212,6 +213,8 @@ scom_data { g_coltype = INIT_SCOMD; return INIT_SCOMD;} END_INITFILE return INIT_ENDINITFILE; +<*>SYS\. yymore(); + <*>ENUM_{ID} { yylval.str_ptr = new std::string(yytext); return ATTRIBUTE_ENUM; } |

