From 6711cf2533d8c45fea53619877e2d78d684d8a2f Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Thu, 11 Oct 2007 16:12:44 +0000 Subject: [PATCH] Projs aren't scheduled anymore [r16155] --- ir/be/bespill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } -- 2.20.1