used ircons_t.h now
[libfirm] / ir / debug / dbginfo.h
index e8f3bc5..20eee75 100644 (file)
@@ -66,32 +66,32 @@ typedef struct dbg_info dbg_info;
 /**
  * Sets the debug information of a node.
  */
-INLINE void set_irn_dbg_info(ir_node *n, dbg_info* db);
+void set_irn_dbg_info(ir_node *n, dbg_info* db);
 
 /**
  * Returns the debug information of an node.
  */
-INLINE dbg_info *get_irn_dbg_info(ir_node *n);
+dbg_info *get_irn_dbg_info(ir_node *n);
 
 /**
  * Sets the debug information of an entity.
  */
-INLINE void set_entity_dbg_info(entity *ent, dbg_info* db);
+void set_entity_dbg_info(entity *ent, dbg_info* db);
 
 /**
  * Returns the debug information of an entity.
  */
-INLINE dbg_info *get_entity_dbg_info(entity *ent);
+dbg_info *get_entity_dbg_info(entity *ent);
 
 /**
  * Sets the debug information of a type.
  */
-INLINE void set_type_dbg_info(type *tp, dbg_info* db);
+void set_type_dbg_info(type *tp, dbg_info* db);
 
 /**
  * Returns the debug information of a type.
  */
-INLINE dbg_info *get_type_dbg_info(type *tp);
+dbg_info *get_type_dbg_info(type *tp);
 
 /**
  * An enumeration indicating the action performed by a transformation.
@@ -111,6 +111,7 @@ typedef enum {
   dbg_write_after_read,         /**< A Firm subgraph was replaced because of a write
                                      after read optimization. */
   dbg_rem_poly_call,            /**< Remove polymorphic call. */
+  dbg_dead_code,                /**< Removing unreachable code, I.e. blocks that are never executed. */
   dbg_max                       /**< Maximum value. */
 
 } dbg_action;
@@ -120,10 +121,10 @@ typedef enum {
  * Converts enum values to strings.
  */
 #ifdef __GNUC__
-INLINE static const char* dbg_action_2_str(dbg_action) __attribute__ ((unused));
+static const char* dbg_action_2_str(dbg_action) __attribute__ ((unused));
 #endif
 
-INLINE static const char* dbg_action_2_str(dbg_action a) {
+static const char* dbg_action_2_str(dbg_action a) {
   switch(a) {
   case dbg_error: return "dbg_error"; break;
   case dbg_opt_ssa: return "dbg_opt_ssa"; break;