summaryrefslogtreecommitdiff
path: root/lopcodes.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-16 20:03:57 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-01-16 20:03:57 -0200
commit7ab7703b53be3024a06334653b29dac338e55a01 (patch)
treebecc738e21f7d328cd21b73bb1b4da445d96aee6 /lopcodes.c
parent566310fa04621a6fb848efec5cd00b7c9c6575c8 (diff)
downloadlua-7ab7703b53be3024a06334653b29dac338e55a01.tar.gz
lua-7ab7703b53be3024a06334653b29dac338e55a01.tar.bz2
lua-7ab7703b53be3024a06334653b29dac338e55a01.zip
cleaner semantics for test instructions (skips)
Diffstat (limited to 'lopcodes.c')
-rw-r--r--lopcodes.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lopcodes.c b/lopcodes.c
index e52805e5..e9ae53b5 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.c,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ 2** $Id: lopcodes.c,v 1.8 2001/12/11 22:48:44 roberto Exp $
3** extracted automatically from lopcodes.h by mkprint.lua 3** extracted automatically from lopcodes.h by mkprint.lua
4** DO NOT EDIT 4** DO NOT EDIT
5** See Copyright Notice in lua.h 5** See Copyright Notice in lua.h
@@ -37,7 +37,6 @@ const char *const luaP_opnames[] = {
37 "NOT", 37 "NOT",
38 "CONCAT", 38 "CONCAT",
39 "JMP", 39 "JMP",
40 "CJMP",
41 "TESTEQ", 40 "TESTEQ",
42 "TESTNE", 41 "TESTNE",
43 "TESTLT", 42 "TESTLT",
@@ -88,7 +87,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
88 ,opmode(0,0,1,0, 1,0,iABC) /* OP_NOT */ 87 ,opmode(0,0,1,0, 1,0,iABC) /* OP_NOT */
89 ,opmode(0,0,1,1, 1,0,iABC) /* OP_CONCAT */ 88 ,opmode(0,0,1,1, 1,0,iABC) /* OP_CONCAT */
90 ,opmode(0,0,0,0, 0,0,iAsBc) /* OP_JMP */ 89 ,opmode(0,0,0,0, 0,0,iAsBc) /* OP_JMP */
91 ,opmode(0,0,0,0, 0,0,iAsBc) /* OP_CJMP */
92 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTEQ */ 90 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTEQ */
93 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTNE */ 91 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTNE */
94 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTLT */ 92 ,opmode(1,0,0,1, 0,0,iABC) /* OP_TESTLT */