From 2bb77cdaed74190673769d6bc32c4a091272a146 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 12 Apr 2000 16:56:50 -0300 Subject: [PATCH] keep opcodes in the right order --- ltests.c | 6 +++--- 1 file 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 @@ /* -** $Id: ltests.c,v 1.12 2000/04/07 13:12:50 roberto Exp roberto $ +** $Id: ltests.c,v 1.13 2000/04/12 18:57:19 roberto Exp roberto $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -98,12 +98,12 @@ static int printop (lua_State *L, Instruction i) { case OP_JMPLE: S("JMPLE"); break; case OP_JMPGT: S("JMPGT"); break; case OP_JMPGE: S("JMPGE"); break; + case OP_JMPT: S("JMPT"); break; + case OP_JMPF: S("JMPF"); break; case OP_JMPONT: S("JMPONT"); break; case OP_JMPONF: S("JMPONF"); break; case OP_JMP: S("JMP"); break; case OP_PUSHNILJMP: O("PUSHNILJMP"); break; - case OP_JMPT: S("JMPT"); break; - case OP_JMPF: S("JMPF"); break; case OP_FORPREP: S("OP_FORPREP"); break; case OP_FORLOOP: S("OP_FORLOOP"); break; case OP_CLOSURE: AB("CLOSURE"); break;