From 5938212748636d21d6f4b372481ab3b6dd6c7538 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Sep 2009 13:32:50 -0300 Subject: information about upvalues (where they come from) kept in Proto structure, instead of sequence of pseudo-opcodes after OP_CLOSURE --- lopcodes.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index 866c1641..41910d1b 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.129 2009/03/09 15:27:56 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.130 2009/09/23 20:33:05 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -251,10 +251,6 @@ OP_EXTRAARG/* Ax extra (larger) argument for previous opcode */ (*) All `skips' (pc++) assume that next instruction is a jump. - (*) The OP_CLOSURE instruction is followed by a sequence of - instructions coding the upvalues: OP_MOVE A B if upvalue is local B, - or OP_GETUPVAL A B if upvalue is enclosing upvalue B. - ===========================================================================*/ -- cgit v1.2.3-55-g6feb