[BACK]Return to eval.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/eval.c between version 1.64 and 1.65

version 1.64, 2008/11/18 20:52:47 version 1.65, 2009/03/04 09:15:36
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/eval.c,v 1.63 2008/09/01 06:20:33 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/eval.c,v 1.64 2008/11/18 20:52:47 ohara Exp $
 */  */
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
Line 943  pointer evalf(FUNC f,FNODE a,FNODE opt)
Line 943  pointer evalf(FUNC f,FNODE a,FNODE opt)
                         }                          }
             if ( !stack_base ) {              if ( !stack_base ) {
 #if defined(GC7)  #if defined(GC7)
                 struct GC_stack_base sb;                  stack_base = (void *)GC_get_main_stack_base();
                 GC_get_stack_base(&sb);  
                 stack_base = (void *)sb.mem_base;  
 #else  #else
                 stack_base = (void *)GC_get_stack_base();                  stack_base = (void *)GC_get_stack_base();
 #endif  #endif

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65

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