aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/instructions.h
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.h
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.h')
-rw-r--r--backendC/CleanCompilerSources/instructions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/instructions.h b/backendC/CleanCompilerSources/instructions.h
index 67768ad..205e62f 100644
--- a/backendC/CleanCompilerSources/instructions.h
+++ b/backendC/CleanCompilerSources/instructions.h
@@ -159,6 +159,9 @@ void GenNodeEntryDirective (int arity,Label label,Label label2);
void GenNodeEntryDirectiveForLabelWithoutSymbol (int arity,Label label,Label label2);
void GenNodeEntryDirectiveUnboxed (int a_size,int b_size,Label label,Label label2);
void GenApplyEntryDirective (int arity,Label label);
+#ifdef NEW_APPLY
+void GenApplyEntryDirective (int arity,Label label);
+#endif
void GenLazyRecordNodeEntryDirective (int arity,Label label);
void GenFieldNodeEntryDirective (int arity, Label label, Label label2,char *record_name);
void GenConstructorDescriptorAndExport (SymbDef sdef);