Diff for /gforth/Attic/threading.h between versions 1.2 and 1.3

version 1.2, 1995/11/07 18:07:02 version 1.3, 1995/11/09 18:28:40
Line 173 Line 173
 #  define NEXT_INST     (*ip)  #  define NEXT_INST     (*ip)
 #  define INC_IP(const_inc)     ({ip+=(const_inc);})  #  define INC_IP(const_inc)     ({ip+=(const_inc);})
 #  define DEF_CA  #  define DEF_CA
 #  define NEXT_P1       ({cfa=*ip++;})  #  define NEXT_P1
 #  define NEXT_P2       ({goto **cfa;})  #  define NEXT_P2       ({cfa=*ip++; goto **cfa;})
 #  define EXEC(XT)      ({cfa=(XT); goto **cfa;})  #  define EXEC(XT)      ({cfa=(XT); goto **cfa;})
 #endif  #endif
   
Line 225 Line 225
 #  define NEXT_INST     (*ip)  #  define NEXT_INST     (*ip)
 #  define INC_IP(const_inc)     ({ip+=(const_inc);})  #  define INC_IP(const_inc)     ({ip+=(const_inc);})
 #  define DEF_CA  #  define DEF_CA
 #  define NEXT_P1       ({cfa=*ip;})  #  define NEXT_P1
 #  define NEXT_P2       ({ip++; goto **cfa;})  #  define NEXT_P2       ({cfa=*ip++; goto **cfa;})
 #  define EXEC(XT)      ({cfa=(XT); goto **cfa;})  #  define EXEC(XT)      ({cfa=(XT); goto **cfa;})
 #endif  #endif
   

Removed from v.1.2  
changed lines
  Added in v.1.3


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