Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-compiler-and-rts
compiler
Commits
f35bf381
Commit
f35bf381
authored
Sep 03, 2001
by
John van Groningen
Browse files
fix memory allocation bug
parent
92aeffd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
backendC/CleanCompilerSources/sa.c
View file @
f35bf381
...
...
@@ -3035,7 +3035,11 @@ static void init_predefined_symbols (void)
strict functions (for strict annots), lists (2), conditional (4)
and the apply. Also for the two list functions if necessary.
*/
nr_funs
=
MaxNodeArity
+
MaxNodeArity
+
MaxNrAnnots
+
2
+
4
+
1
;
nr_funs
=
MaxNodeArity
+
MaxNodeArity
+
MaxNrAnnots
+
2
+
4
+
1
#if STRICT_LISTS
+
3
#endif
;
if
(
StrictDoLists
)
nr_funs
+=
2
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment