From 5e870f86a255988ca85eda795adc31063ec1ac70 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 7 Mar 2001 10:22:55 -0300 Subject: optimization for tailcall does not seem to pay itself --- lopcodes.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index a30de1be..207627a5 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.69 2000/12/04 18:33:40 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.70 2001/01/15 16:13:24 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -85,7 +85,6 @@ name args stack before stack after side effects OP_RETURN,/* U v_n-v_x(at u) (return) returns v_x-v_n */ OP_CALL,/* A B v_n-v_1 f(at a) r_b-r_1 f(v1,...,v_n) */ -OP_TAILCALL,/* A B v_n-v_1 f(at a) (return) f(v1,...,v_n) */ OP_PUSHNIL,/* U - nil_1-nil_u */ OP_POP,/* U a_u-a_1 - */ -- cgit v1.2.3-55-g6feb