summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-28 14:53:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-01-28 14:53:00 -0200
commit1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 (patch)
treecbc0e4fafd5fc1367db57f2b2fc8dff5876f1076 /lopcodes.h
parentd6b9f49aaf735f7b17bd0dcafde65ba0f8c57bc7 (diff)
downloadlua-github-1f691a4fcd32b706c79e4c8cbff17c6ae985bc34.tar.gz
renaming of some opcodes and fields
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 27417410..c1ab4092 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
/*
-** $Id: lopcodes.h,v 1.36 1999/12/29 16:31:15 roberto Exp roberto $
+** $Id: lopcodes.h,v 1.37 2000/01/25 13:57:18 roberto Exp roberto $
** Opcodes for Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -27,16 +27,16 @@ TAILCALL,/* b c v_c-v_1 f (return) f(v1,...,v_c) */
PUSHNIL,/* b - nil_0-nil_b */
POP,/* b a_b-a_1 - */
-PUSHNUMBERW,/* w - (float)w */
-PUSHNUMBER,/* b - (float)b */
+PUSHINTW,/* w - (float)w */
+PUSHINT,/* b - (float)b */
-PUSHNUMBERNEGW,/* w - (float)-w */
-PUSHNUMBERNEG,/* b - (float)-b */
+PUSHINTNEGW,/* w - (float)-w */
+PUSHINTNEG,/* b - (float)-b */
-PUSHSTRCNSTW,/* w - STRCNST[w] */
-PUSHSTRCNST,/* b - STRCNST[b] */
-PUSHNUMCNSTW,/* w - NUMCNST[w] */
-PUSHNUMCNST,/* b - NUMCNST[b] */
+PUSHSTRINGW,/* w - KSTR[w] */
+PUSHSTRING,/* b - KSTR[b] */
+PUSHNUMBERW,/* w - KNUM[w] */
+PUSHNUMBER,/* b - KNUM[b] */
PUSHUPVALUE,/* b - Closure[b] */