Increased maximum number of function parameters from 16 to 32

This commit is contained in:
Russell Joyce 2020-06-24 19:17:01 +01:00
parent 29ebc3114b
commit 4da276b88f
No known key found for this signature in database
GPG key ID: 3D46BD9018AF7B72

View file

@ -57,7 +57,7 @@
#define STRING_TABLE_SIZE (97) /* shared string table size */
#define STRING_LITERAL_TABLE_SIZE (97) /* string literal 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 LOCAL_TABLE_SIZE (11) /* size of local variable table (can expand) */
#define STRUCT_TABLE_SIZE (11) /* size of struct/union member table (can expand) */