From 74907fb71e69949d63d94c4c12b80938c974a6df Mon Sep 17 00:00:00 2001
From: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Fri, 25 Jan 2002 19:50:39 -0200
Subject: OP_LOADINT can be done by OP_LOADK

---
 lopcodes.c | 2 --
 1 file changed, 2 deletions(-)

(limited to 'lopcodes.c')

diff --git a/lopcodes.c b/lopcodes.c
index e9ae53b5..4d43a3b1 100644
--- a/lopcodes.c
+++ b/lopcodes.c
@@ -17,7 +17,6 @@
 const char *const luaP_opnames[] = {
   "MOVE",
   "LOADK",
-  "LOADINT",
   "LOADBOOL",
   "LOADNIL",
   "GETUPVAL",
@@ -67,7 +66,6 @@ const lu_byte luaP_opmodes[NUM_OPCODES] = {
 /*       T _ B C sA K mode		   opcode    */
   opmode(0,0,1,0, 1,0,iABC)		/* OP_MOVE */
  ,opmode(0,0,0,0, 1,1,iABc)		/* OP_LOADK */
- ,opmode(0,0,0,0, 1,0,iAsBc)		/* OP_LOADINT */
  ,opmode(0,0,0,0, 1,0,iABC)		/* OP_LOADBOOL */
  ,opmode(0,0,1,0, 1,0,iABC)		/* OP_LOADNIL */
  ,opmode(0,0,0,0, 1,0,iABC)		/* OP_GETUPVAL */
-- 
cgit v1.2.3-55-g6feb