aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/instructions.c
diff options
context:
space:
mode:
authorjohnvg2005-01-25 11:08:13 +0000
committerjohnvg2005-01-25 11:08:13 +0000
commitccf87d6ef9b6254ebd38f512adce3132433d38f7 (patch)
tree872d4e0fc224c7e478e76dfcf231ad9ee4601a5d /backendC/CleanCompilerSources/instructions.c
parentprevent compiler crash in function requirements_of_fields when (diff)
optimize apply of unknown function with two or more arguments, not yet enabled
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1510 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC/CleanCompilerSources/instructions.c')
-rw-r--r--backendC/CleanCompilerSources/instructions.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/instructions.c b/backendC/CleanCompilerSources/instructions.c
index b2bb6ba..5e9f104 100644
--- a/backendC/CleanCompilerSources/instructions.c
+++ b/backendC/CleanCompilerSources/instructions.c
@@ -2648,12 +2648,14 @@ void GenNodeEntryDirective (int arity,Label label,Label label2)
}
}
+#ifdef NEW_APPLY
void GenApplyEntryDirective (int arity,Label label)
{
put_directive_b (a);
put_arguments_n__b (arity);
GenLabel (label);
}
+#endif
void GenLazyRecordNodeEntryDirective (int arity,Label label)
{