From a72ab0f765dcb5c6b3b60bf1e2c7b4685883c4c6 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sat, 5 May 2007 13:10:23 +0000 Subject: [PATCH] fix for compilation without libcore [r13645] --- ir/ir/irprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ir/irprintf.c b/ir/ir/irprintf.c index 4eb1d0b82..cffcbb8a1 100644 --- a/ir/ir/irprintf.c +++ b/ir/ir/irprintf.c @@ -262,7 +262,7 @@ static void dump_with_settings(const appender_t *app, void *object, size_t limit /** * Beware: do not set the entity ld_name */ -static const char *get_entity_ld_name_ex(entity *ent) { +static const char *get_entity_ld_name_ex(ir_entity *ent) { if (ent->ld_name) return get_entity_ld_name(ent); return get_entity_name(ent); @@ -281,7 +281,7 @@ static void firm_emit(char *buf, int buflen, char conversion, ir_node *block; char add[64]; char tv_buf[256]; - entity *ent; + ir_entity *ent; buf[0] = '\0'; add[0] = '\0'; -- 2.20.1