aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-24 14:05:59 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-10-24 14:05:59 -0200
commite833bd47c9c48f3235097b85f0e45f79ab5c00dd (patch)
treeb8786931b9b07c0bee1b3daf494dbfbdb46ae192
parentb7ffb128cb63a1315e11b8e9490164654a1048ff (diff)
downloadlua-e833bd47c9c48f3235097b85f0e45f79ab5c00dd.tar.gz
lua-e833bd47c9c48f3235097b85f0e45f79ab5c00dd.tar.bz2
lua-e833bd47c9c48f3235097b85f0e45f79ab5c00dd.zip
comments
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index c1754682..927390d0 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.66 2000/08/15 18:28:48 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.67 2000/08/29 14:48:16 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*/
@@ -91,7 +91,7 @@ OP_TAILCALL,/* A B v_n-v_1 f(at a) (return) f(v1,...,v_n) */
91OP_PUSHNIL,/* U - nil_1-nil_u */ 91OP_PUSHNIL,/* U - nil_1-nil_u */
92OP_POP,/* U a_u-a_1 - */ 92OP_POP,/* U a_u-a_1 - */
93 93
94OP_PUSHINT,/* S - (Number)s */ 94OP_PUSHINT,/* S - (Number)s */
95OP_PUSHSTRING,/* K - KSTR[k] */ 95OP_PUSHSTRING,/* K - KSTR[k] */
96OP_PUSHNUM,/* N - KNUM[n] */ 96OP_PUSHNUM,/* N - KNUM[n] */
97OP_PUSHNEGNUM,/* N - -KNUM[n] */ 97OP_PUSHNEGNUM,/* N - -KNUM[n] */