Branch: Tag:

1999-08-03

1999-08-03 00:45:13 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

new opcode F_UNDEFINED

Rev: src/docode.c:1.49
Rev: src/interpreter.h:1.8
Rev: src/language.yacc:1.120
Rev: src/lex.c:1.65

4:   ||| See the files COPYING and DISCLAIMER for more information.   \*/   #include "global.h" - RCSID("$Id: docode.c,v 1.48 1999/06/19 19:57:31 hubbe Exp $"); + RCSID("$Id: docode.c,v 1.49 1999/08/03 00:45:09 hubbe Exp $");   #include "las.h"   #include "program.h"   #include "language.h"
1078:    switch(n->u.sval.type)    {    case T_INT: +  if(!n->u.sval.u.integer && n->u.sval.subtype==NUMBER_UNDEFINED) +  { +  emit2(F_UNDEFINED); +  }else{    emit(F_NUMBER,n->u.sval.u.integer); -  +  }    return 1;       case T_STRING: