Increased maximum number of function parameters from 16 to 32
This commit is contained in:
parent
29ebc3114b
commit
4da276b88f
|
@ -57,7 +57,7 @@
|
||||||
#define STRING_TABLE_SIZE (97) /* shared string table size */
|
#define STRING_TABLE_SIZE (97) /* shared string table size */
|
||||||
#define STRING_LITERAL_TABLE_SIZE (97) /* string literal table size */
|
#define STRING_LITERAL_TABLE_SIZE (97) /* string literal table size */
|
||||||
#define RESERVED_WORD_TABLE_SIZE (97) /* reserved word table size */
|
#define RESERVED_WORD_TABLE_SIZE (97) /* reserved word table size */
|
||||||
#define PARAMETER_MAX (16) /* maximum number of parameters to a function */
|
#define PARAMETER_MAX (32) /* maximum number of parameters to a function */
|
||||||
#define LINEBUFFER_MAX (256) /* maximum number of characters on a line */
|
#define LINEBUFFER_MAX (256) /* maximum number of characters on a line */
|
||||||
#define LOCAL_TABLE_SIZE (11) /* size of local variable table (can expand) */
|
#define LOCAL_TABLE_SIZE (11) /* size of local variable table (can expand) */
|
||||||
#define STRUCT_TABLE_SIZE (11) /* size of struct/union member table (can expand) */
|
#define STRUCT_TABLE_SIZE (11) /* size of struct/union member table (can expand) */
|
||||||
|
|
Loading…
Reference in a new issue