- Porting cygwin W2K
This commit is contained in:
parent
d1a361e867
commit
1a87960363
|
@ -266,7 +266,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 );
|
||||||
|
@ -326,7 +326,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 );
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
struct g_type dble;
|
struct g_type dble;
|
||||||
};
|
};
|
||||||
|
|
||||||
%token _AND
|
%token tok_AND
|
||||||
%token <valu> PRAGMA
|
%token <valu> PRAGMA
|
||||||
%token _BEGIN
|
%token _BEGIN
|
||||||
%token _END
|
%token _END
|
||||||
|
@ -80,7 +80,7 @@
|
||||||
%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
|
||||||
|
@ -192,7 +192,7 @@
|
||||||
%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
|
||||||
|
|
||||||
|
@ -1581,11 +1581,11 @@ expression
|
||||||
|
|
||||||
relation..AND__relation..
|
relation..AND__relation..
|
||||||
: relation
|
: relation
|
||||||
_AND
|
tok_AND
|
||||||
relation
|
relation
|
||||||
{ $$ = bvl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); }
|
{ $$ = bvl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); }
|
||||||
| relation..AND__relation..
|
| relation..AND__relation..
|
||||||
_AND
|
tok_AND
|
||||||
relation
|
relation
|
||||||
{ $$ = bvl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); }
|
{ $$ = bvl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); }
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue