X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Ftropt.c;h=c3124702b2709a0a25c7a90ba0633e843c052e32;hb=3398ae4a8b3cbf66cb0b274ddcd85a2ea863ece1;hp=5595e467993f3943f2dfbae63f0d6b960cea8c0d;hpb=6730cf921d356d992d35526daf57f82af7ab0816;p=libfirm diff --git a/ir/opt/tropt.c b/ir/opt/tropt.c index 5595e4679..c3124702b 100644 --- a/ir/opt/tropt.c +++ b/ir/opt/tropt.c @@ -32,7 +32,6 @@ #include "irprog.h" #include "irtypeinfo.h" #include "irgwalk.h" -#include "irsimpletype.h" #include "trouts.h" #include "ircons.h" #include "irgmod.h" @@ -219,8 +218,10 @@ void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct) int i; if (gppt_fct) gen_pointer_type_to = gppt_fct; +#if 0 if (get_irp_typeinfo_state() != ir_typeinfo_consistent) simple_analyse_types(); +#endif for (i = get_irp_n_irgs() - 1; i >= 0; --i) { pure_normalize_irg_class_casts(get_irp_irg(i)); @@ -448,7 +449,7 @@ static int remove_Cmp_Null_cast(ir_node *cmp) irg = get_irn_irg(cmp); set_irn_n(cmp, cast_pos, get_Cast_op(cast)); fromtype = get_irn_typeinfo_type(get_Cast_op(cast)); - new_null = new_r_Const_type(irg, get_Const_tarval(null), fromtype); + new_null = new_r_Const(irg, get_Const_tarval(null)); set_irn_typeinfo_type(new_null, fromtype); set_irn_n(cmp, null_pos, new_null); ++n_casts_removed; @@ -460,7 +461,7 @@ static int remove_Cmp_Null_cast(ir_node *cmp) */ static void irn_optimize_class_cast(ir_node *n, void *env) { - int *changed = env; + int *changed = (int*)env; if (is_Cast(n)) *changed |= cancel_out_casts(n); @@ -476,8 +477,10 @@ void optimize_class_casts(void) { int changed; +#if 0 if (get_irp_typeinfo_state() != ir_typeinfo_consistent) simple_analyse_types(); +#endif changed = 0; all_irg_walk(NULL, irn_optimize_class_cast, &changed);