From 19f7bf3c513089323700bce7d8424901b5315fa6 Mon Sep 17 00:00:00 2001 From: Ludovic Jacomme Date: Tue, 13 Jul 2004 21:56:13 +0000 Subject: [PATCH] - Porting cygwin W2K --- alliance/src/fvh/src/fbl_bcomp_l.l | 4 ++-- alliance/src/fvh/src/fbl_bcomp_y.y | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/alliance/src/fvh/src/fbl_bcomp_l.l b/alliance/src/fvh/src/fbl_bcomp_l.l index c7133eda..e60fed97 100644 --- a/alliance/src/fvh/src/fbl_bcomp_l.l +++ b/alliance/src/fvh/src/fbl_bcomp_l.l @@ -71,7 +71,7 @@ static el_mc tab_mc []= {"after" ,AFTER}, {"alias" ,ALIAS}, {"all" ,ALL}, - {"and" ,_AND}, + {"and" ,tok_AND}, {"architecture" ,ARCHITECTURE}, {"array" ,ARRAY}, {"assert" ,ASSERT}, @@ -115,7 +115,7 @@ static el_mc tab_mc []= {"next" ,_NEXT}, {"nor" ,_NOR}, {"not" ,_NOT}, - {"null" ,_NULL}, + {"null" ,tok_NULL}, {"of" ,OF}, {"on" ,ON}, {"open" ,OPEN}, diff --git a/alliance/src/fvh/src/fbl_bcomp_y.y b/alliance/src/fvh/src/fbl_bcomp_y.y index dd36fd4b..206e05e5 100644 --- a/alliance/src/fvh/src/fbl_bcomp_y.y +++ b/alliance/src/fvh/src/fbl_bcomp_y.y @@ -74,7 +74,7 @@ struct choice_chain *order_choice(); struct fbtyp type; }; -%token _AND +%token tok_AND %token Pragma %token _BEGIN %token _END @@ -94,7 +94,7 @@ struct choice_chain *order_choice(); %token _NEXT %token _NOR %token _NOT -%token _NULL +%token tok_NULL %token _OR %token _OUT %token _XOR @@ -192,7 +192,7 @@ struct choice_chain *order_choice(); %token WHILE %token WITH -%left _AND _OR _NAND _NOR _XOR +%left tok_AND _OR _NAND _NOR _XOR %left _EQSym _NESym %left _NOT @@ -2379,7 +2379,7 @@ choices ; null_statement - : _NULL + : tok_NULL Semicolon_ERR ; @@ -2552,11 +2552,11 @@ expression relation..AND__relation.. : relation - _AND + tok_AND relation { $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1); } | relation..AND__relation.. - _AND + tok_AND relation { $$ = fbl_crtabl (ABL_AND ,$1 ,$3 ,-1,-1);} ;