pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.c:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
30
1998/02/
01
04
:
01
:
32
hubbe Exp $");
+
RCSID("$Id: docode.c,v 1.
31
1998/02/
20
00
:
36
:
17
hubbe Exp $");
#include "las.h" #include "program.h" #include "language.h" #include "pike_types.h" #include "stralloc.h" #include "interpret.h" #include "constants.h" #include "array.h" #include "pike_macros.h" #include "error.h"
pike.git/src/docode.c:634:
current_continue=continue_save; return 0; } case F_CAST: if(n->type==void_type_string) { DO_CODE_BLOCK(CAR(n)); return 0; }
+
tmp1=store_prog_string(n->type);
+
emit(F_STRING,tmp1);
tmp1=do_docode(CAR(n),0); if(!tmp1) { emit2(F_CONST0); tmp1=1; } if(tmp1>1) do_pop(tmp1-1);
-
tmp1=store_prog_string(n->type);
-
emit(F_STRING,tmp1);
+
emit2(F_CAST); return 1; case F_APPLY: if(CAR(n)->token == F_CONSTANT) { if(CAR(n)->u.sval.type == T_FUNCTION) { if(CAR(n)->u.sval.subtype == FUNCTION_BUILTIN) /* driver fun? */ {