vm: don't mix iostream and stdio

db4
Joe Groff 2011-10-20 16:04:01 -07:00
parent c06be95816
commit 92a5b7c300
1 changed files with 2 additions and 3 deletions

View File

@ -84,15 +84,14 @@ void factor_vm::init_parameters_from_args(vm_parameters *p, int argc, vm_char **
/* Compile code in boot image so that we can execute the startup quotation */ /* Compile code in boot image so that we can execute the startup quotation */
void factor_vm::prepare_boot_image() void factor_vm::prepare_boot_image()
{ {
std::cout << "*** Stage 2 early init... "; std::cout << "*** Stage 2 early init... " << std::flush;
fflush(stdout);
compile_all_words(); compile_all_words();
update_code_heap_words(true); update_code_heap_words(true);
initialize_all_quotations(); initialize_all_quotations();
special_objects[OBJ_STAGE2] = true_object; special_objects[OBJ_STAGE2] = true_object;
std::cout << "done\n"; std::cout << "done" << std::endl;
} }
void factor_vm::init_factor(vm_parameters *p) void factor_vm::init_factor(vm_parameters *p)