- Porting cygwin W2K

This commit is contained in:
Ludovic Jacomme 2004-07-13 21:56:13 +00:00
parent 1a87960363
commit 19f7bf3c51
2 changed files with 8 additions and 8 deletions

View File

@ -71,7 +71,7 @@ static el_mc tab_mc []=
{"after" ,AFTER}, {"after" ,AFTER},
{"alias" ,ALIAS}, {"alias" ,ALIAS},
{"all" ,ALL}, {"all" ,ALL},
{"and" ,_AND}, {"and" ,tok_AND},
{"architecture" ,ARCHITECTURE}, {"architecture" ,ARCHITECTURE},
{"array" ,ARRAY}, {"array" ,ARRAY},
{"assert" ,ASSERT}, {"assert" ,ASSERT},
@ -115,7 +115,7 @@ static el_mc tab_mc []=
{"next" ,_NEXT}, {"next" ,_NEXT},
{"nor" ,_NOR}, {"nor" ,_NOR},
{"not" ,_NOT}, {"not" ,_NOT},
{"null" ,_NULL}, {"null" ,tok_NULL},
{"of" ,OF}, {"of" ,OF},
{"on" ,ON}, {"on" ,ON},
{"open" ,OPEN}, {"open" ,OPEN},

View File

@ -74,7 +74,7 @@ struct choice_chain *order_choice();
struct fbtyp type; struct fbtyp type;
}; };
%token <valu> _AND %token <valu> tok_AND
%token <valu> Pragma %token <valu> Pragma
%token <valu> _BEGIN %token <valu> _BEGIN
%token <valu> _END %token <valu> _END
@ -94,7 +94,7 @@ struct choice_chain *order_choice();
%token <valu> _NEXT %token <valu> _NEXT
%token <valu> _NOR %token <valu> _NOR
%token <valu> _NOT %token <valu> _NOT
%token _NULL %token tok_NULL
%token <valu> _OR %token <valu> _OR
%token <valu> _OUT %token <valu> _OUT
%token <valu> _XOR %token <valu> _XOR
@ -192,7 +192,7 @@ struct choice_chain *order_choice();
%token <valu> WHILE %token <valu> WHILE
%token <valu> WITH %token <valu> WITH
%left _AND _OR _NAND _NOR _XOR %left tok_AND _OR _NAND _NOR _XOR
%left _EQSym _NESym %left _EQSym _NESym
%left _NOT %left _NOT
@ -2379,7 +2379,7 @@ choices
; ;
null_statement null_statement
: _NULL : tok_NULL
Semicolon_ERR Semicolon_ERR
; ;
@ -2552,11 +2552,11 @@ expression
relation..AND__relation.. relation..AND__relation..
: relation : relation
_AND tok_AND
relation relation
{ $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); } { $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); }
| relation..AND__relation.. | relation..AND__relation..
_AND tok_AND
relation relation
{ $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1);} { $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1);}
; ;