X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Flower%2Flower_mux.c;h=11de6ae4ae963a83c2f84bbcffa0f7565c68cada;hb=3e889332cb054e5cee1a12bba6dd0209121100cf;hp=076d974ab30601c1200c727083c11b331c1e1cc0;hpb=30abccc0868ac7a535746a06ec8c082cd5cd1a3c;p=libfirm diff --git a/ir/lower/lower_mux.c b/ir/lower/lower_mux.c index 076d974ab..11de6ae4a 100644 --- a/ir/lower/lower_mux.c +++ b/ir/lower/lower_mux.c @@ -34,7 +34,6 @@ #include "irgwalk.h" #include "irgmod.h" #include "ircons.h" -#include "irvrfy.h" #include "irpass_t.h" typedef struct walk_env { @@ -44,7 +43,7 @@ typedef struct walk_env { static void find_mux_nodes(ir_node *mux, void *ctx) { - walk_env_t *env = ctx; + walk_env_t *env = (walk_env_t*)ctx; /* Skip non-mux nodes. */ if (!is_Mux(mux)) @@ -85,8 +84,8 @@ static void lower_mux_node(ir_node* mux) * block in-between, so that the phi can be used to select the result * value from the old mux node in the lower block. */ cond = new_r_Cond(upper_block, get_Mux_sel(mux)); - trueProj = new_r_Proj(upper_block, cond, mode_X, pn_Cond_true); - falseProj = new_r_Proj(upper_block, cond, mode_X, pn_Cond_false); + trueProj = new_r_Proj(cond, mode_X, pn_Cond_true); + falseProj = new_r_Proj(cond, mode_X, pn_Cond_false); falseBlock = new_r_Block(irg, 1, &falseProj); mux_jmps[0] = trueProj; mux_jmps[1] = new_r_Jmp(falseBlock); @@ -146,24 +145,25 @@ void lower_mux(ir_graph *irg, lower_mux_callback *cb_func) DEL_ARR_F(env.muxes); } -struct pass_t { +typedef struct pass_t { ir_graph_pass_t pass; lower_mux_callback *cb_func; -}; +} pass_t; /** * Wrapper to run ir_lower_mux() as an ir_graph pass */ static int pass_wrapper(ir_graph *irg, void *context) { - struct pass_t *pass = context; + pass_t *pass = (pass_t*)context; lower_mux(irg, pass->cb_func); return 0; } -ir_graph_pass_t *lower_mux_pass(const char *name, lower_mux_callback *cb_func) { - struct pass_t *pass = XMALLOCZ(struct pass_t); +ir_graph_pass_t *lower_mux_pass(const char *name, lower_mux_callback *cb_func) +{ + pass_t *pass = XMALLOCZ(pass_t); pass->cb_func = cb_func; return def_graph_pass_constructor(