aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-12 16:56:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-04-12 16:56:50 -0300
commit2bb77cdaed74190673769d6bc32c4a091272a146 (patch)
treeec4174a441311474885c19a86181b0148a626e90
parentf9cf402fbd1ba2ab00f5aa5f7d0ff5c9c0580dd5 (diff)
downloadlua-2bb77cdaed74190673769d6bc32c4a091272a146.tar.gz
lua-2bb77cdaed74190673769d6bc32c4a091272a146.tar.bz2
lua-2bb77cdaed74190673769d6bc32c4a091272a146.zip
keep opcodes in the right order
-rw-r--r--ltests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ltests.c b/ltests.c
index 75be74c3..1951b446 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.12 2000/04/07 13:12:50 roberto Exp roberto $ 2** $Id: ltests.c,v 1.13 2000/04/12 18:57:19 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -98,12 +98,12 @@ static int printop (lua_State *L, Instruction i) {
98 case OP_JMPLE: S("JMPLE"); break; 98 case OP_JMPLE: S("JMPLE"); break;
99 case OP_JMPGT: S("JMPGT"); break; 99 case OP_JMPGT: S("JMPGT"); break;
100 case OP_JMPGE: S("JMPGE"); break; 100 case OP_JMPGE: S("JMPGE"); break;
101 case OP_JMPT: S("JMPT"); break;
102 case OP_JMPF: S("JMPF"); break;
101 case OP_JMPONT: S("JMPONT"); break; 103 case OP_JMPONT: S("JMPONT"); break;
102 case OP_JMPONF: S("JMPONF"); break; 104 case OP_JMPONF: S("JMPONF"); break;
103 case OP_JMP: S("JMP"); break; 105 case OP_JMP: S("JMP"); break;
104 case OP_PUSHNILJMP: O("PUSHNILJMP"); break; 106 case OP_PUSHNILJMP: O("PUSHNILJMP"); break;
105 case OP_JMPT: S("JMPT"); break;
106 case OP_JMPF: S("JMPF"); break;
107 case OP_FORPREP: S("OP_FORPREP"); break; 107 case OP_FORPREP: S("OP_FORPREP"); break;
108 case OP_FORLOOP: S("OP_FORLOOP"); break; 108 case OP_FORLOOP: S("OP_FORLOOP"); break;
109 case OP_CLOSURE: AB("CLOSURE"); break; 109 case OP_CLOSURE: AB("CLOSURE"); break;