mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-10-31 17:04:42 +00:00
Increase the total size of string constants permitted in each function.
The size limit is increased from 8000 bytes to 12500 bytes. This was needed to compile some functions with many string constants.
This commit is contained in:
parent
4cff395745
commit
02de5f4137
2
CGI.pas
2
CGI.pas
@ -197,7 +197,7 @@ const
|
||||
{Note: maxlabel is also defined in CGC.asm}
|
||||
maxLabel = 3200; {max # of internal labels}
|
||||
maxLocalLabel = 200; {max # local variables}
|
||||
maxString = 8000; {max # chars in string space}
|
||||
maxString = 12500; {max # chars in string space}
|
||||
|
||||
{size of internal types}
|
||||
{----------------------}
|
||||
|
Loading…
Reference in New Issue
Block a user