Diff for /gforth/engine/threaded.h between versions 1.35 and 1.37

version 1.35, 2005/12/31 15:46:13 version 1.37, 2007/12/31 17:34:59
Line 1 Line 1
 /* This file defines a number of threading schemes.  /* This file defines a number of threading schemes.
   
   Copyright (C) 1995, 1996,1997,1999,2003,2004,2005 Free Software Foundation, Inc.    Copyright (C) 1995, 1996,1997,1999,2003,2004,2005,2007 Free Software Foundation, Inc.
   
   This file is part of Gforth.    This file is part of Gforth.
   
Line 91 Line 91
   
 */  */
   
 #ifdef GCC_PR15242_WORKAROUND  #if !defined(GCC_PR15242_WORKAROUND)
   #if __GNUC__ == 3
   /* various gcc-3.x version have problems (including PR15242) that are
      solved with this workaround */
   #define GCC_PR15242_WORKAROUND 1
   #else
   /* other gcc versions are better off without the workaround for
      primitives that are not relocatable */
   #define GCC_PR15242_WORKAROUND 0
   #endif
   #endif
   
   #if GCC_PR15242_WORKAROUND
 #define DO_GOTO goto before_goto  #define DO_GOTO goto before_goto
 #else  #else
 #define DO_GOTO goto *real_ca  #define DO_GOTO goto *real_ca
 #endif  #endif
   
 #ifndef GOTO_ALIGN  #ifndef GOTO_ALIGN
 #define GOTO_ALIGN  #define GOTO_ALIGN
 #endif  #endif

Removed from v.1.35  
changed lines
  Added in v.1.37


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