Branch: Tag:

2000-05-01

2000-05-01 02:11:25 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

all recursive functions now optimized.. (no real need for 'local' or
'inline' in those cases anymore)

Rev: src/docode.c:1.71
Rev: src/interpret_functions.h:1.19
Rev: src/language.yacc:1.182
Rev: src/las.c:1.176
Rev: src/las.h:1.36
Rev: src/lex.c:1.79
Rev: src/peep.c:1.32
Rev: src/peep.in:1.35
Rev: src/program.c:1.235

5:   \*/   /**/   #include "global.h" - RCSID("$Id: program.c,v 1.234 2000/04/27 02:13:28 hubbe Exp $"); + RCSID("$Id: program.c,v 1.235 2000/05/01 02:11:25 hubbe Exp $");   #include "program.h"   #include "object.h"   #include "dynamic_buffer.h"
3671:    f->max_number_of_locals=0;    f->previous=compiler_frame;    f->current_function_number=-2; /* no function */ +  f->recur_label=-1; +  f->is_inline=0; +  f->num_args=-1;    compiler_frame=f;   }