aboutsummaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/lparser.c b/lparser.c
index 3a8e9760..8238b996 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 1.71 2000/03/20 19:15:37 roberto Exp roberto $ 2** $Id: lparser.c,v 1.72 2000/03/24 12:17:53 roberto Exp roberto $
3** LL(1) Parser and code generator for Lua 3** LL(1) Parser and code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -23,17 +23,6 @@
23 23
24 24
25/* 25/*
26** check whether arbitrary limits fit into respective opcode types
27*/
28#if MAXLOCALS > MAXARG_U || MAXUPVALUES > MAXARG_B || MAXVARSLH > MAXARG_B || \
29 MAXPARAMS > MAXLOCALS || MAXSTACK > MAXARG_A || \
30 LFIELDS_PER_FLUSH > MAXARG_B || MULT_RET > MAXARG_B
31#error invalid limits
32#endif
33
34
35
36/*
37** Constructors descriptor: 26** Constructors descriptor:
38** `n' indicates number of elements, and `k' signals whether 27** `n' indicates number of elements, and `k' signals whether
39** it is a list constructor (k = 0) or a record constructor (k = 1) 28** it is a list constructor (k = 0) or a record constructor (k = 1)