Diff for /gforth/engine/main.c between versions 1.80 and 1.81

version 1.80, 2002/12/19 23:22:19 version 1.81, 2002/12/24 14:47:24
Line 128  Cell last_jump=0; /* if the last prim wa Line 128  Cell last_jump=0; /* if the last prim wa
                      is it's number, otherwise this contains 0 */                       is it's number, otherwise this contains 0 */
   
 static int no_super=0;   /* true if compile_prim should not fuse prims */  static int no_super=0;   /* true if compile_prim should not fuse prims */
 /* --no-dynamic by default on gcc versions >=3.1 (it works with 3.0.4,  static int no_dynamic=NO_DYNAMIC_DEFAULT; /* if true, no code is generated
    but not with 3.2) */                                               dynamically */
 #if (__GNUC__>2 && __GNUC_MINOR__>=1)  
 static int no_dynamic=1; /* true if compile_prim should not generate code */  
 #else  
 static int no_dynamic=0; /* true if compile_prim should not generate code */  
 #endif  
   
 #ifdef HAS_DEBUG  #ifdef HAS_DEBUG
 int debug=0;  int debug=0;

Removed from v.1.80  
changed lines
  Added in v.1.81


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