Diff for /gforth/engine/main.c between versions 1.125 and 1.126

version 1.125, 2003/10/16 18:48:03 version 1.126, 2003/11/02 18:18:35
Line 49 Line 49
   
 typedef enum prim_num {  typedef enum prim_num {
 /* definitions of N_execute etc. */  /* definitions of N_execute etc. */
 #include "prim_num.i"  #include PRIM_NUM_I
   N_START_SUPER    N_START_SUPER
 } PrimNum;  } PrimNum;
   
Line 256  Cell groups[32] = { Line 256  Cell groups[32] = {
 #undef GROUPADD  #undef GROUPADD
 #define GROUPADD(n) +n  #define GROUPADD(n) +n
 #define GROUP(x, n) , 0  #define GROUP(x, n) , 0
 #include "prim_grp.i"  #include PRIM_GRP_I
 #undef GROUP  #undef GROUP
 #undef GROUPADD  #undef GROUPADD
 #define GROUP(x, n)  #define GROUP(x, n)
Line 641  struct cost { Line 641  struct cost {
 };  };
   
 PrimNum super2[] = {  PrimNum super2[] = {
 #include "super2.i"  #include SUPER2_I
 };  };
   
 struct cost super_costs[] = {  struct cost super_costs[] = {
 #include "costs.i"  #include COSTS_I
 };  };
   
 struct super_state {  struct super_state {
Line 749  int compare_priminfo_length(const void * Line 749  int compare_priminfo_length(const void *
 #endif /* !defined(NO_DYNAMIC) */  #endif /* !defined(NO_DYNAMIC) */
   
 static char MAYBE_UNUSED superend[]={  static char MAYBE_UNUSED superend[]={
 #include "prim_superend.i"  #include PRIM_SUPEREND_I
 };  };
   
 Cell npriminfos=0;  Cell npriminfos=0;

Removed from v.1.125  
changed lines
  Added in v.1.126


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>