removed unitialized used vartiable
[libfirm] / ir / be / belive_t.h
index 857386e..b23a3ee 100644 (file)
@@ -7,8 +7,6 @@
 #ifndef _BELIVE_T_H
 #define _BELIVE_T_H
 
-#include "firm_config.h"
-
 #include "irgraph_t.h"
 #include "iredges_t.h"
 #include "irphase_t.h"
 #include "belive.h"
 
 struct _be_lv_t {
-       phase_t ph;
+       ir_phase ph;
        ir_graph *irg;
        bitset_t *nodes;
        hook_entry_t hook_info;
-       firm_dbg_module_t *dbg;
 };
 
 struct _be_lv_info_node_t {
@@ -82,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)