Remove debug messages from VM

Slava Pestov 2009-05-05 14:27:22 -05:00
parent 7dfa61c098
commit 3acadbd23f
2 changed files with 0 additions and 2 deletions

1
vm/code_block.cpp Normal file → Executable file
View File

@ -329,7 +329,6 @@ void *get_rel_symbol(array *literals, cell index)
return sym; return sym;
else else
{ {
printf("%s\n",name);
return (void *)undefined_symbol; return (void *)undefined_symbol;
} }
} }

View File

@ -94,7 +94,6 @@ const vm_char *vm_executable_path()
PRIMITIVE(existsp) PRIMITIVE(existsp)
{ {
vm_char *path = untag_check<byte_array>(dpop())->data<vm_char>(); vm_char *path = untag_check<byte_array>(dpop())->data<vm_char>();
wprintf(L"existsp: path is %s\n",path);
box_boolean(windows_stat(path)); box_boolean(windows_stat(path));
} }