From d69fda7fa10cb56fb612105aa5014f87c28ab82a Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Mon, 25 Jun 2012 17:37:50 +0200 Subject: [PATCH] removing debug output --- ir.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ir.c b/ir.c index 806b8bd..f8804d7 100644 --- a/ir.c +++ b/ir.c @@ -1571,11 +1571,8 @@ bool ir_function_allocate_locals(ir_function *self) { slot = alloc.locals[a]; - if (ir_values_overlap(v, slot)) { - printf("over\n"); + if (ir_values_overlap(v, slot)) continue; - } - printf("not\n"); if (!ir_value_life_merge_into(slot, v)) goto error; @@ -1609,9 +1606,6 @@ bool ir_function_allocate_locals(ir_function *self) for (i = 0; i < self->values_count; ++i) self->values[i]->code.slot = alloc.positions[self->values[i]->code.slot]; - for (i = 0; i < self->values_count; ++i) - printf("Value %s at slot %i\n", self->values[i]->name, - self->values[i]->code.slot); goto cleanup; error: -- 2.39.2