diff options
author | johnvg | 2002-10-21 13:08:53 +0000 |
---|---|---|
committer | johnvg | 2002-10-21 13:08:53 +0000 |
commit | 8c7f336ddf779c33026f73bc67dcadfadbd890f3 (patch) | |
tree | f595babcc81a5b46d163567023ca9ab96fa2de74 /backendC/CleanCompilerSources | |
parent | add boxed records (diff) |
add missing prototypes
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1256 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC/CleanCompilerSources')
-rw-r--r-- | backendC/CleanCompilerSources/codegen3.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/codegen3.h b/backendC/CleanCompilerSources/codegen3.h index 69af6b1..538abf1 100644 --- a/backendC/CleanCompilerSources/codegen3.h +++ b/backendC/CleanCompilerSources/codegen3.h @@ -11,3 +11,11 @@ struct saved_node_id_ref_counts* save_lhs_node_id_ref_counts (NodeP node_p,struc struct saved_node_id_ref_counts* save_rhs_node_id_ref_counts (NodeP node_p,NodeDefP node_defs, struct saved_node_id_ref_counts *snir_p,struct saved_case_node_id_ref_counts ***scnirc_h); void restore_node_id_ref_counts (struct saved_node_id_ref_counts *snir_p,struct saved_case_node_id_ref_counts *scnirc_p); + +#if TAIL_CALL_MODULO_CONS_OPTIMIZATION +int does_tail_call_modulo_cons (NodeP node_p,NodeDefP node_defs); +#endif + +#if OPTIMIZE_LAZY_TUPLE_RECURSION +void update_tuple_element_node (StateP state_p,int tuple_element_a_index,int *asp_p,int *bsp_p); +#endif |