diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-15 14:13:24 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-15 14:13:24 -0200 |
commit | a04de4f0adc0b14aa4ad88136ef82f6e277653c7 (patch) | |
tree | f21b1cc0e28b2d0ce4f8df076328269dfac96589 /lopcodes.h | |
parent | a653d93a4365eb413d31bd058ef0c9822d6a1d4d (diff) | |
download | lua-a04de4f0adc0b14aa4ad88136ef82f6e277653c7.tar.gz lua-a04de4f0adc0b14aa4ad88136ef82f6e277653c7.tar.bz2 lua-a04de4f0adc0b14aa4ad88136ef82f6e277653c7.zip |
no more END opcode
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.68 2000/10/24 16:05:59 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.69 2000/12/04 18:33:40 roberto Exp roberto $ |
3 | ** Opcodes for Lua virtual machine | 3 | ** Opcodes for Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -82,7 +82,6 @@ typedef enum { | |||
82 | /*---------------------------------------------------------------------- | 82 | /*---------------------------------------------------------------------- |
83 | name args stack before stack after side effects | 83 | name args stack before stack after side effects |
84 | ------------------------------------------------------------------------*/ | 84 | ------------------------------------------------------------------------*/ |
85 | OP_END,/* - - (return) no results */ | ||
86 | OP_RETURN,/* U v_n-v_x(at u) (return) returns v_x-v_n */ | 85 | OP_RETURN,/* U v_n-v_x(at u) (return) returns v_x-v_n */ |
87 | 86 | ||
88 | OP_CALL,/* A B v_n-v_1 f(at a) r_b-r_1 f(v1,...,v_n) */ | 87 | OP_CALL,/* A B v_n-v_1 f(at a) r_b-r_1 f(v1,...,v_n) */ |