From: Michael Beck Date: Fri, 13 Jan 2006 22:14:37 +0000 (+0000) Subject: renamed all types 'type' to 'ir_type' X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4697d32eff0b0ad9dbc38add33c008b0eb3ee27b;p=libfirm renamed all types 'type' to 'ir_type' [r7232] --- diff --git a/ir/debug/dbginfo.c b/ir/debug/dbginfo.c index 0fad91a3f..809f1d714 100644 --- a/ir/debug/dbginfo.c +++ b/ir/debug/dbginfo.c @@ -67,11 +67,11 @@ dbg_info *get_entity_dbg_info(entity *ent) { /* Routines to access the field of a type containing the debugging information. */ -void set_type_dbg_info(type *tp, dbg_info* db) { +void set_type_dbg_info(ir_type *tp, dbg_info* db) { tp->dbi = db; } -dbg_info *get_type_dbg_info(type *tp) { +dbg_info *get_type_dbg_info(ir_type *tp) { return tp->dbi; } diff --git a/ir/debug/dbginfo.h b/ir/debug/dbginfo.h index cb8fa179e..20874bc6b 100644 --- a/ir/debug/dbginfo.h +++ b/ir/debug/dbginfo.h @@ -75,12 +75,12 @@ dbg_info *get_entity_dbg_info(entity *ent); /** * Sets the debug information of a type. */ -void set_type_dbg_info(type *tp, dbg_info *db); +void set_type_dbg_info(ir_type *tp, dbg_info *db); /** * Returns the debug information of a type. */ -dbg_info *get_type_dbg_info(type *tp); +dbg_info *get_type_dbg_info(ir_type *tp); /** * An enumeration indicating the action performed by a transformation. diff --git a/ir/debug/debugger.c b/ir/debug/debugger.c index 4732879ea..3bca0609c 100644 --- a/ir/debug/debugger.c +++ b/ir/debug/debugger.c @@ -358,7 +358,7 @@ static void dbg_new_entity(void *ctx, entity *ent) * @param ctx the hook context * @param tp the newly created type */ -static void dbg_new_type(void *ctx, type *tp) +static void dbg_new_type(void *ctx, ir_type *tp) { { bp_nr_t key, *elem;