- Porting cygwin W2K

This commit is contained in:
Ludovic Jacomme 2004-07-14 06:29:04 +00:00
parent ed6ccdb31c
commit ce1b0734a1
2 changed files with 7 additions and 7 deletions

View File

@ -127,7 +127,7 @@ char *key;
addhtitem (pt_hash, namealloc("after") , AFTER ); addhtitem (pt_hash, namealloc("after") , AFTER );
addhtitem (pt_hash, namealloc("alias") , ALIAS ); addhtitem (pt_hash, namealloc("alias") , ALIAS );
addhtitem (pt_hash, namealloc("all") , ALL ); addhtitem (pt_hash, namealloc("all") , ALL );
addhtitem (pt_hash, namealloc("and") , _AND ); addhtitem (pt_hash, namealloc("and") , tok_AND );
addhtitem (pt_hash, namealloc("architecture") , ARCHITECTURE ); addhtitem (pt_hash, namealloc("architecture") , ARCHITECTURE );
addhtitem (pt_hash, namealloc("array") , ARRAY ); addhtitem (pt_hash, namealloc("array") , ARRAY );
addhtitem (pt_hash, namealloc("assert") , ASSERT ); addhtitem (pt_hash, namealloc("assert") , ASSERT );
@ -188,7 +188,7 @@ char *key;
addhtitem (pt_hash, namealloc("nor") , _NOR ); addhtitem (pt_hash, namealloc("nor") , _NOR );
addhtitem (pt_hash, namealloc("not") , _NOT ); addhtitem (pt_hash, namealloc("not") , _NOT );
addhtitem (pt_hash, namealloc("ns") , NS ); addhtitem (pt_hash, namealloc("ns") , NS );
addhtitem (pt_hash, namealloc("null") , _NULL ); addhtitem (pt_hash, namealloc("null") , tok_NULL );
addhtitem (pt_hash, namealloc("of") , OF ); addhtitem (pt_hash, namealloc("of") , OF );
addhtitem (pt_hash, namealloc("on") , ON ); addhtitem (pt_hash, namealloc("on") , ON );

View File

@ -1358,7 +1358,7 @@ bvl_ablstr pt_ablstr; /* tested expression */
struct g_type dble; struct g_type dble;
}; };
%token _AND %token tok_AND
%token _BEGIN %token _BEGIN
%token _END %token _END
%token _EQSym %token _EQSym
@ -1377,7 +1377,7 @@ bvl_ablstr pt_ablstr; /* tested expression */
%token _NEXT %token _NEXT
%token _NOR %token _NOR
%token _NOT %token _NOT
%token _NULL %token tok_NULL
%token _OR %token _OR
%token _OUT %token _OUT
%token _XOR %token _XOR
@ -1490,7 +1490,7 @@ bvl_ablstr pt_ablstr; /* tested expression */
%token WOR_BIT %token WOR_BIT
%token WOR_VECTOR %token WOR_VECTOR
%left _AND _OR _NAND _NOR _XOR %left tok_AND _OR _NAND _NOR _XOR
%left _EQSym _NESym %left _EQSym _NESym
%left _NOT %left _NOT
@ -2954,11 +2954,11 @@ expression
relation..AND__relation.. relation..AND__relation..
: relation : relation
_AND tok_AND
relation relation
{ $$ = crtabl (AND , $1 , $3 , -1, -1); } { $$ = crtabl (AND , $1 , $3 , -1, -1); }
| relation..AND__relation.. | relation..AND__relation..
_AND tok_AND
relation relation
{ $$ = crtabl (AND , $1 , $3 , -1, -1); } { $$ = crtabl (AND , $1 , $3 , -1, -1); }
; ;