=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/parse/parse.h,v retrieving revision 1.41 retrieving revision 1.45 diff -u -p -r1.41 -r1.45 --- OpenXM_contrib2/asir2000/parse/parse.h 2005/11/02 05:18:42 1.41 +++ OpenXM_contrib2/asir2000/parse/parse.h 2006/02/08 02:11:19 1.45 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.h,v 1.40 2005/10/26 07:33:03 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.h,v 1.44 2005/12/10 14:14:16 noro Exp $ */ # if defined(VISUAL) #include @@ -69,7 +69,7 @@ typedef enum { I_FORMULA, I_LIST, I_STR, I_NEWCOMP, I_CAR, I_CDR, I_CAST, I_INDEX, I_EV, I_TIMER, I_GF2NGEN, I_GFPNGEN, I_GFSNGEN, I_LOP, I_OPT, I_GETOPT, I_POINT, I_PAREN, I_MINUS, - I_NARYOP, I_CONS + I_NARYOP, I_CONS, I_FUNC_QARG, I_FUNC_HEAD, } fid; /* identifiers for statements */ @@ -123,6 +123,8 @@ typedef struct oPV { typedef struct oINFILE { char *name; FILE *fp; + jmp_buf jmpbuf; + int ready_for_longjmp; int ln; struct oINFILE *next; char *tname; @@ -195,8 +197,9 @@ typedef struct oPFINS { typedef struct oFNODE { short id; - char normalized; - char expanded; + unsigned normalized:1; + unsigned expanded:1; + unsigned coef:1; pointer arg[1]; } *FNODE;