X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Flower%2Flower_hl.c;h=1ea642c31bc05119217e9229625bd169c8e8e32f;hb=288b414e4d82e0aa0d4b4348d8c387db02142cdb;hp=2a131c9c0de2a4193b5c294c5477805b06d383a6;hpb=f44b4b1268e91fedfa29f670189b8ca84866bb9a;p=libfirm diff --git a/ir/lower/lower_hl.c b/ir/lower/lower_hl.c index 2a131c9c0..1ea642c31 100644 --- a/ir/lower/lower_hl.c +++ b/ir/lower/lower_hl.c @@ -141,12 +141,12 @@ static void lower_sel(ir_node *sel) { assert(irg == current_ir_graph); if (! is_Unknown(lb)) - lb = new_rd_Conv(dbg, irg, bl, copy_const_value(get_irn_dbg_info(sel), lb), mode_Int, 0); + lb = new_rd_Conv(dbg, irg, bl, copy_const_value(get_irn_dbg_info(sel), lb), mode_Int); else lb = NULL; if (! is_Unknown(ub)) - ub = new_rd_Conv(dbg, irg, bl, copy_const_value(get_irn_dbg_info(sel), ub), mode_Int, 0); + ub = new_rd_Conv(dbg, irg, bl, copy_const_value(get_irn_dbg_info(sel), ub), mode_Int); else ub = NULL; @@ -162,7 +162,7 @@ static void lower_sel(ir_node *sel) { elms = new_rd_Sub(dbg, irg, bl, ub, lb, mode_Int); } - ind = new_rd_Conv(dbg, irg, bl, get_Sel_index(sel, dim), mode_Int, 0); + ind = new_rd_Conv(dbg, irg, bl, get_Sel_index(sel, dim), mode_Int); /* * Normalize index, id lower bound is set, also assume @@ -303,9 +303,6 @@ static void lower_symconst(ir_node *symc) { hook_lower(symc); exchange(symc, newn); break; - case symconst_label: - /* leave */ - break; default: assert(!"unknown SymConst kind");