dbg_backend added
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 3 Apr 2006 13:17:48 +0000 (13:17 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 3 Apr 2006 13:17:48 +0000 (13:17 +0000)
[r7566]

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

index 809f1d7..fb4af7f 100644 (file)
@@ -98,6 +98,7 @@ const char *dbg_action_2_str(dbg_action a) {
   CASE(dbg_rem_poly_call);
   CASE(dbg_dead_code);
   CASE(dbg_opt_confirm);
+  CASE(dbg_backend);
   default:
     if (a <= dbg_max)
       return "string conversion not implemented";
index 20874bc..1042a48 100644 (file)
@@ -109,6 +109,7 @@ typedef enum {
   dbg_rem_poly_call,            /**< Remove polymorphic call. */
   dbg_dead_code,                /**< Removing unreachable code, I.e. blocks that are never executed. */
   dbg_opt_confirm,              /**< A Firm subgraph was replace because of a Confirmation */
+  dbg_backend,                  /**< Backend transformation */
   dbg_max                       /**< Maximum value. */
 } dbg_action;