From: Peep P. <so...@us...> - 2004-03-21 09:11:02
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12397 Modified Files: lang.h dfparse.h Log Message: Update. Index: lang.h =================================================================== RCS file: /cvsroot/agd/server/src/lang.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- lang.h 12 Mar 2004 16:05:05 -0000 1.2 +++ lang.h 21 Mar 2004 09:00:57 -0000 1.3 @@ -45,25 +45,30 @@ L_OPEN_FUNP = 271, L_CLOSE_FUNP = 272, L_ASSIGN = 273, - L_AND = 274, - L_OR = 275, - L_GE = 276, - L_LE = 277, - L_GT = 278, - L_LT = 279, - L_NE = 280, - L_EQ = 281, - L_MINUS = 282, - L_PLUS = 283, - L_MOD = 284, - L_DIV = 285, - L_MUL = 286, - L_DEREF = 287, - L_DEC = 288, - L_INC = 289, - L_NOT = 290, - L_NEG = 291, - L_TYPECAST = 292 + L_ME = 274, + L_PE = 275, + L_DE = 276, + L_MOE = 277, + L_MUE = 278, + L_AND = 279, + L_OR = 280, + L_NE = 281, + L_EQ = 282, + L_MINUS = 283, + L_PLUS = 284, + L_GE = 285, + L_LE = 286, + L_GT = 287, + L_LT = 288, + L_MOD = 289, + L_DIV = 290, + L_MUL = 291, + L_DEREF = 292, + L_DEC = 293, + L_INC = 294, + L_NOT = 295, + L_NEG = 296, + L_TYPECAST = 297 }; #endif #define L_RETURN 258 @@ -82,31 +87,36 @@ #define L_OPEN_FUNP 271 #define L_CLOSE_FUNP 272 #define L_ASSIGN 273 -#define L_AND 274 -#define L_OR 275 -#define L_GE 276 -#define L_LE 277 -#define L_GT 278 -#define L_LT 279 -#define L_NE 280 -#define L_EQ 281 -#define L_MINUS 282 -#define L_PLUS 283 -#define L_MOD 284 -#define L_DIV 285 -#define L_MUL 286 -#define L_DEREF 287 -#define L_DEC 288 -#define L_INC 289 -#define L_NOT 290 -#define L_NEG 291 -#define L_TYPECAST 292 +#define L_ME 274 +#define L_PE 275 +#define L_DE 276 +#define L_MOE 277 +#define L_MUE 278 +#define L_AND 279 +#define L_OR 280 +#define L_NE 281 +#define L_EQ 282 +#define L_MINUS 283 +#define L_PLUS 284 +#define L_GE 285 +#define L_LE 286 +#define L_GT 287 +#define L_LT 288 +#define L_MOD 289 +#define L_DIV 290 +#define L_MUL 291 +#define L_DEREF 292 +#define L_DEC 293 +#define L_INC 294 +#define L_NOT 295 +#define L_NEG 296 +#define L_TYPECAST 297 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) -#line 24 "lang.y" +#line 28 "lang.y" typedef union YYSTYPE { char *str; int i; @@ -117,7 +127,7 @@ def_id_t *id; } YYSTYPE; /* Line 1240 of yacc.c. */ -#line 121 "lang.h" +#line 131 "lang.h" # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 Index: dfparse.h =================================================================== RCS file: /cvsroot/agd/server/src/dfparse.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- dfparse.h 16 Mar 2004 14:11:26 -0000 1.2 +++ dfparse.h 21 Mar 2004 09:00:57 -0000 1.3 @@ -40,7 +40,7 @@ #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) -#line 55 "dfparse.y" +#line 56 "dfparse.y" typedef union YYSTYPE { char *s; int i; |