summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-27 15:33:22 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-27 15:33:22 -0200
commitacdb0b741e31adebfa4f608f8bf23e65fa68d741 (patch)
treea4f3bb695c4b2ae03ef8e02d15953bc12de25a9d /lopcodes.h
parent5b08fcd5a1392a7440cae91e68f350a44b136806 (diff)
downloadlua-acdb0b741e31adebfa4f608f8bf23e65fa68d741.tar.gz
lua-acdb0b741e31adebfa4f608f8bf23e65fa68d741.tar.bz2
lua-acdb0b741e31adebfa4f608f8bf23e65fa68d741.zip
comments.
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index f6e81bff..f44b5f76 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.33 1999/06/17 17:04:03 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.34 1999/11/25 18:59:43 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -121,7 +121,7 @@ LONGARG /* b (add b*(1<<16) to arg of next instruction) */
121#define MAX_ARG ((1<<24)-1) 121#define MAX_ARG ((1<<24)-1)
122#endif 122#endif
123 123
124/* maximum value of a word of 2 bytes; cannot be bigger than MAX_ARG */ 124/* maximum value of a word of 2 bytes; cannot be larger than MAX_ARG */
125#if MAX_ARG < (1<<16) 125#if MAX_ARG < (1<<16)
126#define MAX_WORD MAX_ARG 126#define MAX_WORD MAX_ARG
127#else 127#else