workaround
[libfirm] / ir / ana / irlivechk.c
index e6bde6c..53cac7e 100644 (file)
@@ -21,7 +21,7 @@
  * @file    livechk.c
  * @date    21.04.2007
  * @author  Sebastian Hack
- * @version $Id$
+ * @version $Id$
  * @summary
  *
  * Liveness checks as developed by Benoit Boissinot, Fabrice Rastello and myself.
@@ -36,9 +36,6 @@
  * - data obtained from a depth-first-search
  *
  * The precomputation remains valid as long as the CFG is not altered.
- *
- * Copyright (C) 2007 Universitaet Karlsruhe
- * Released under the GPL
  */
 
 #include <stdio.h>
@@ -78,7 +75,7 @@ typedef struct _bl_info_t {
 struct _lv_chk_t {
        ir_phase ph;
        dfs_t *dfs;
-       firm_dbg_module_t *dbg;
+       DEBUG_ONLY(firm_dbg_module_t *dbg;)
        int n_blocks;
        bitset_t *back_edge_src;
        bitset_t *back_edge_tgt;
@@ -237,7 +234,7 @@ lv_chk_t *lv_chk_new(ir_graph *irg)
        res->back_edge_tgt = bitset_obstack_alloc(obst, res->n_blocks);
        res->map           = obstack_alloc(obst, res->n_blocks * sizeof(res->map[0]));
 
-#if 1
+#if 0
        {
                char name[256];
                FILE *f;