X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Fifconv.c;h=22ab6f068cb8c8c184478fd02a65062a67b50a2d;hb=8c9921a1fc166552f6e416434fd8394a4fc210a3;hp=322024c62b762f33ca0136ce461528622f65edc6;hpb=7d5b331123bd8399f5f1d057e90797faa3300b66;p=libfirm diff --git a/ir/opt/ifconv.c b/ir/opt/ifconv.c index 322024c62..22ab6f068 100644 --- a/ir/opt/ifconv.c +++ b/ir/opt/ifconv.c @@ -21,7 +21,6 @@ * @file ir/opt/ifconv.c * @brief If conversion * @author Christoph Mallon - * @version $Id$ */ #include "config.h" @@ -497,9 +496,9 @@ static ir_graph_state_t do_ifconv(ir_graph *irg) return IR_GRAPH_STATE_NO_CRITICAL_EDGES | IR_GRAPH_STATE_ONE_RETURN; } -optdesc_t opt_ifconv = { +static optdesc_t opt_ifconv = { "if-conversion", - IR_GRAPH_STATE_NO_CRITICAL_EDGES | IR_GRAPH_STATE_NO_UNREACHABLE_BLOCKS | IR_GRAPH_STATE_NO_BAD_BLOCKS | IR_GRAPH_STATE_ONE_RETURN, + IR_GRAPH_STATE_NO_CRITICAL_EDGES | IR_GRAPH_STATE_NO_UNREACHABLE_CODE | IR_GRAPH_STATE_NO_BADS | IR_GRAPH_STATE_ONE_RETURN, do_ifconv, };