summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-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