From: Matthias Braun Date: Thu, 11 Oct 2007 16:12:44 +0000 (+0000) Subject: Projs aren't scheduled anymore X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=6711cf2533d8c45fea53619877e2d78d684d8a2f;p=libfirm Projs aren't scheduled anymore [r16155] --- diff --git a/ir/be/bespill.c b/ir/be/bespill.c index 4cc4ad036..577b56dfb 100644 --- a/ir/be/bespill.c +++ b/ir/be/bespill.c @@ -272,7 +272,7 @@ ir_node *be_get_end_of_block_insertion_point(const ir_node *block) ir_node *last = sched_last(block); /* we might have projs and keepanys behind the jump... */ - while(is_Proj(last) || be_is_Keep(last)) { + while(be_is_Keep(last)) { last = sched_prev(last); assert(!sched_is_end(last)); }