aboutsummaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-20 16:20:43 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-20 16:20:43 -0300
commit5d60470508aad81eac145ab4e004fbf150130267 (patch)
treee019d25234bccc195614a7303520db0b86aca2ed /opcode.h
parent88d7ffb0d0c7303ef1b766b1100e4220e775ab57 (diff)
downloadlua-5d60470508aad81eac145ab4e004fbf150130267.tar.gz
lua-5d60470508aad81eac145ab4e004fbf150130267.tar.bz2
lua-5d60470508aad81eac145ab4e004fbf150130267.zip
i.m. "arith" and "order" splited for different operations
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index 177d21c4..d691233c 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1,6 +1,6 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: opcode.h,v 3.28 1997/03/11 18:44:28 roberto Exp roberto $ 3** $Id: opcode.h,v 3.29 1997/03/19 19:41:10 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef opcode_h 6#ifndef opcode_h
@@ -14,6 +14,10 @@
14 14
15#define FIELDS_PER_FLUSH 40 15#define FIELDS_PER_FLUSH 40
16 16
17/*
18* WARNING: if you change the order of this enumeration,
19* grep "ORDER LUA_T"
20*/
17typedef enum 21typedef enum
18{ 22{
19 LUA_T_NIL = -9, 23 LUA_T_NIL = -9,