X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Flower%2Flower_hl.c;h=99ee5f69db652c6fae1cdad7327c52b05ba89034;hb=4f25f9ca1fd1d53303f277a140a1aa657782aeba;hp=39d0593e9c8a1f73ca7c3a9382af59000363b426;hpb=5d0dc80583152b7e75989b205755bdb0cd1ce0aa;p=libfirm diff --git a/ir/lower/lower_hl.c b/ir/lower/lower_hl.c index 39d0593e9..99ee5f69d 100644 --- a/ir/lower/lower_hl.c +++ b/ir/lower/lower_hl.c @@ -282,9 +282,6 @@ static void lower_irnode(ir_node *irn, void *env) case iro_SymConst: lower_symconst(irn); break; - case iro_Cast: - exchange(irn, get_Cast_op(irn)); - break; default: break; } @@ -297,7 +294,7 @@ static void lower_irnode(ir_node *irn, void *env) */ void lower_highlevel_graph(ir_graph *irg) { - /* Finally: lower SymConst-Size and Sel nodes, Casts, unaligned Load/Stores. */ + /* Finally: lower SymConst-Size and Sel nodes, unaligned Load/Stores. */ irg_walk_graph(irg, NULL, lower_irnode, NULL); }