reverted previous changed done for testing and debugging

This commit is contained in:
hyunghwan.chung 2018-12-20 16:11:52 +00:00
parent 9a4bbcaa4c
commit 3b49f6998a
3 changed files with 4 additions and 4 deletions

View File

@ -10,6 +10,6 @@
#include 'Stream.moo'.
(* -------------------------------------------------------------------------- *)
## #include 'FFI.moo'.
#include 'FFI.moo'.
#include 'Stdio.moo'.
## #include 'Console.moo'.

View File

@ -4852,7 +4852,7 @@ static int __execute (moo_t* moo)
if ((bcode >> 4) & 1)
{
/* push - bit 4 on */
LOG_INST2 (moo, "push_tempvar %zu => %O", b1, ctx->stack[bx]);
LOG_INST1 (moo, "push_tempvar %zu", b1);
MOO_STACK_PUSH (moo, ctx->stack[bx]);
}
else

View File

@ -207,9 +207,9 @@ int main (int argc, char* argv[])
{
moo_oow_t tab_size;
tab_size = 10;
tab_size = 5000;
moo_setoption (moo, MOO_SYMTAB_SIZE, &tab_size);
tab_size = 10;
tab_size = 5000;
moo_setoption (moo, MOO_SYSDIC_SIZE, &tab_size);
tab_size = 600;
moo_setoption (moo, MOO_PROCSTK_SIZE, &tab_size);