Remove some accidentally-committed debug output

Sat, 22 May 2010 17:41:17 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 22 May 2010 17:41:17 +0100
changeset 22
8391b51517df
parent 21
9b5cc503bc31
child 23
70fc1cb387e1

Remove some accidentally-committed debug output

lvm.js file | annotate | diff | comparison | revisions
--- a/lvm.js	Sat May 22 17:37:02 2010 +0100
+++ b/lvm.js	Sat May 22 17:41:17 2010 +0100
@@ -319,11 +319,9 @@
 					switch(INS_OPCODE(upval_instruction))
 					{
 					case OP_MOVE:
-						sys.puts("CONSUMING OP_MOVE");
 						f.upvalues[i] = this.frame.reg[INS_B(upval_instruction)];
 						break;
 					case OP_GETUPVAL:
-						sys.puts("CONSUMING OP_GETUPVAL");
 						f.upvalues[i] = this.frame.f.upvalues[INS_B(upval_instruction)];
 						break;
 					default:

mercurial