renamed all types 'type' to 'ir_type'
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 13 Jan 2006 22:14:37 +0000 (22:14 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 13 Jan 2006 22:14:37 +0000 (22:14 +0000)
[r7232]

ir/debug/dbginfo.c
ir/debug/dbginfo.h
ir/debug/debugger.c

index 0fad91a..809f1d7 100644 (file)
@@ -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;
 }
 
index cb8fa17..20874bc 100644 (file)
@@ -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.
index 4732879..3bca060 100644 (file)
@@ -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;