From 763f328a451b3781d29d492cc825c30fa9cc390d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Tue, 24 Jan 2006 14:59:59 +0000 Subject: [PATCH] fixed node dumper --- ir/be/benode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/be/benode.c b/ir/be/benode.c index 0f8555fa9..4e8768694 100644 --- a/ir/be/benode.c +++ b/ir/be/benode.c @@ -519,7 +519,7 @@ static int dump_node(ir_node *irn, FILE *f, dump_reason_t reason) if(get_irn_be_opcode(irn) == beo_Spill) { be_spill_attr_t *a = (be_spill_attr_t *) at; ir_fprintf(f, "spill context: %+F\n", a->spill_ctx); - ir_fprintf(f, "spill offset: %04x (%u)\n", a->offset); + ir_fprintf(f, "spill offset: %04x (%u)\n", a->offset, a->offset); } break; } -- 2.20.1