diff options
author | johnvg | 2005-03-17 15:06:10 +0000 |
---|---|---|
committer | johnvg | 2005-03-17 15:06:10 +0000 |
commit | 46d62d0925d1de537d9f8ce7dced27c16567ed45 (patch) | |
tree | fcc6d74260082876cc4b785e10b2f7e02097f4fd /backendC | |
parent | add convert_file_name (diff) |
rename bool to bool_
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1517 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC')
-rw-r--r-- | backendC/CleanCompilerSources/codegen2.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/backendC/CleanCompilerSources/codegen2.c b/backendC/CleanCompilerSources/codegen2.c index c9199a5..a609011 100644 --- a/backendC/CleanCompilerSources/codegen2.c +++ b/backendC/CleanCompilerSources/codegen2.c @@ -3128,7 +3128,7 @@ static void FillNormalNode (Node node,int *asp_p,int *bsp_p,NodeId update_node_i { LabDef *strict_cons_lab_p,strict_cons_lab; int a_size,b_size; - + if (symb->symb_head_strictness==4){ if (lazy_fill){ MakeSymbolLabel (&strict_cons_lab,symb->symb_unboxed_cons_sdef_p->sdef_module,d_pref,symb->symb_unboxed_cons_sdef_p,0); @@ -6298,7 +6298,7 @@ void BranchOnCondition (Node condnode,int asp,int bsp,CodeGenNodeIdsP code_gen_n } case IfNode: { - Bool bool; + Bool bool_; Label thenlabel,elselabel; LabDef thenlab,elselab; int new_then_asp,new_then_bsp,new_else_asp,new_else_bsp; @@ -6310,8 +6310,8 @@ void BranchOnCondition (Node condnode,int asp,int bsp,CodeGenNodeIdsP code_gen_n new_else_bsp = bsp; condpart = condnode->node_arguments; - if (IsBooleanValue (condpart->arg_next->arg_node,&bool)){ - if (bool){ + if (IsBooleanValue (condpart->arg_next->arg_node,&bool_)){ + if (bool_){ thenlabel = truelab; new_then_asp = then_asp; new_then_bsp = then_bsp; @@ -6326,8 +6326,8 @@ void BranchOnCondition (Node condnode,int asp,int bsp,CodeGenNodeIdsP code_gen_n thenlab.lab_mod=notused_string; } - if (IsBooleanValue (condpart->arg_next->arg_next->arg_node,&bool)){ - if (bool){ + if (IsBooleanValue (condpart->arg_next->arg_next->arg_node,&bool_)){ + if (bool_){ elselabel = truelab; new_else_asp = then_asp; new_else_bsp = then_bsp; |