From: Sebastian Buchwald Date: Fri, 4 Sep 2009 18:15:54 +0000 (+0000) Subject: We have already asserted the condition. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=871d475ce46fde8939488624c9b9b3a73643f9cc;p=libfirm We have already asserted the condition. [r26491] --- diff --git a/ir/be/bespill.c b/ir/be/bespill.c index 2d3436a2b..034d30e07 100644 --- a/ir/be/bespill.c +++ b/ir/be/bespill.c @@ -280,9 +280,8 @@ void be_register_spiller(const char *name, be_spiller_t *spiller) void be_do_spill(be_irg_t *birg, const arch_register_class_t *cls) { assert(selected_spiller != NULL); - if (selected_spiller != NULL) { - selected_spiller->spill(birg, cls); - } + + selected_spiller->spill(birg, cls); } void be_init_spilloptions(void)