X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Firlivechk.c;h=53cac7e1258d9eaec94931e04bd11fd534cd3271;hb=95afc5aaefb484a67fb89f02b5e96cc302fe02ef;hp=e6bde6c37ec9639453cff5085696744b662524c5;hpb=6c694085a1d9ea8d0be49170e2f1ce64682f4d54;p=libfirm diff --git a/ir/ana/irlivechk.c b/ir/ana/irlivechk.c index e6bde6c37..53cac7e12 100644 --- a/ir/ana/irlivechk.c +++ b/ir/ana/irlivechk.c @@ -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 @@ -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;