X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbelistsched.c;h=b3aa153ef67960e9d1e3868a3b65d2cbe8b2fecc;hb=a4c23fb5fdcaf600f18b4fa7b7e104fa9b7dc514;hp=cf31ea45ec0c76fcad5d13d876d7f43ac6ff8d8b;hpb=c5fdb122134b4f951df289c2688e2abe054fb555;p=libfirm diff --git a/ir/be/belistsched.c b/ir/be/belistsched.c index cf31ea45e..b3aa153ef 100644 --- a/ir/be/belistsched.c +++ b/ir/be/belistsched.c @@ -90,7 +90,7 @@ typedef struct _list_sched_options_t { } list_sched_options_t; static list_sched_options_t list_sched_options = { - BE_SCHED_SELECT_HEUR, /* mueller heuristic selector */ + BE_SCHED_SELECT_NORMAL, /* mueller heuristic selector */ BE_SCHED_PREP_NONE, /* no scheduling preparation */ }; @@ -229,7 +229,7 @@ static INLINE int make_ready(block_sched_env_t *env, ir_node *pred, ir_node *irn /* if irn is an End we have keep-alives and op might be a block, skip that */ if (is_Block(op)) { - assert(get_irn_op(irn) == op_End); + assert(is_End(irn)); continue; }