mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Made the C preprocessor #if nesting stack have 256 levels.
Closes #1523.
This commit is contained in:
parent
ee5014c595
commit
0d3c827d80
@ -71,7 +71,7 @@
|
||||
unsigned char Preprocessing = 0;
|
||||
|
||||
/* Management data for #if */
|
||||
#define MAX_IFS 64
|
||||
#define MAX_IFS 256
|
||||
#define IFCOND_NONE 0x00U
|
||||
#define IFCOND_SKIP 0x01U
|
||||
#define IFCOND_ELSE 0x02U
|
||||
|
Loading…
Reference in New Issue
Block a user