X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fcond_example.c;h=4b6414f078c6944376efe34966c82adc9545aaec;hb=679646fa6698429ad5e2b295e9a0d1db1ccd1e74;hp=b03027bcf209f9a964e8b716e66837a58b252465;hpb=dddcc630819f338c3b45e2bc646233e6872d5bb6;p=libfirm diff --git a/testprograms/cond_example.c b/testprograms/cond_example.c index b03027bcf..4b6414f07 100644 --- a/testprograms/cond_example.c +++ b/testprograms/cond_example.c @@ -79,19 +79,19 @@ int main(int argc, char **argv) /* the expression that evaluates the condition */ /* cmpGt = a > 2 */ c2 = new_Const (mode_Is, new_tarval_from_long (2, mode_Is)); - cmpGt = new_Proj(new_Cmp(get_value(0, mode_Is), c2), mode_b, Gt); + cmpGt = new_Proj(new_Cmp(get_value(0, mode_Is), c2), mode_b, pn_Cmp_Gt); cmpGt = new_Conv(cmpGt, mode_Is); /* cmpLt = a < 10 */ c10 = new_Const (mode_Is, new_tarval_from_long (10, mode_Is)); - cmpLt = new_Proj(new_Cmp(get_value(0, mode_Is), c10), mode_b, Lt); + cmpLt = new_Proj(new_Cmp(get_value(0, mode_Is), c10), mode_b, pn_Cmp_Lt); cmpLt = new_Conv(cmpLt, mode_Is); /* cmpGt && cmpLt */ and = new_And(cmpGt, cmpLt, mode_Is); /* compare result and 0 because we have no cast from integer to bool */ and = new_Cmp(and, new_Const (mode_Is, new_tarval_from_long (0, mode_Is))); - and = new_Proj(and, mode_b, Ne); + and = new_Proj(and, mode_b, pn_Cmp_Lg); /* the conditional branch */ x = new_Cond (and); @@ -129,7 +129,7 @@ int main(int argc, char **argv) /* Now we can mature the end block as all it's predecessors are known. */ mature_immBlock (get_irg_end_block(irg)); - finalize_cons (irg); + irg_finalize_cons (irg); printf("Optimizing ...\n"); dead_node_elimination(irg);