removed unitialized used vartiable
[libfirm] / ir / be / belive_t.h
index 061826a..b23a3ee 100644 (file)
 #include "belive.h"
 
 struct _be_lv_t {
-       phase_t ph;
+       ir_phase ph;
        ir_graph *irg;
        bitset_t *nodes;
        hook_entry_t hook_info;
-       DEBUG_ONLY(firm_dbg_module_t *dbg;)
 };
 
 struct _be_lv_info_node_t {
@@ -80,7 +79,7 @@ static INLINE int _be_is_live_xxx(const struct _be_lv_t *li, const ir_node *bloc
        for(i = _be_lv_next_irn(lv, bl, flags, 0); i >= 0; i = _be_lv_next_irn(lv, bl, flags, i + 1))
 
 
-static INLINE pset *_be_lv_pset_put(struct _be_lv_t *lv, const ir_node *block, int state, pset *s)
+static INLINE pset *_be_lv_pset_put(const struct _be_lv_t *lv, const ir_node *block, int state, pset *s)
 {
        int i;
        be_lv_foreach(lv, block, state, i)