rot matcher incorrect
[libfirm] / ir / be / beirg_t.h
index babc5ae..61f0f28 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -29,6 +29,7 @@
 
 #include "beirg.h"
 #include "be_t.h"
+#include "beabi.h"
 #include "irlivechk.h"
 
 /**
@@ -43,7 +44,6 @@ struct be_irg_t {
        ir_exec_freq           *exec_freq;
        be_dom_front_info_t    *dom_front;
        be_lv_t                *lv;
-       lv_chk_t               *lv_chk;
 };
 
 static INLINE be_lv_t *
@@ -51,11 +51,6 @@ _be_get_birg_liveness(const be_irg_t *birg) {
        return birg->lv;
 }
 
-static INLINE lv_chk_t *
-_be_get_birg_liveness_chk(const be_irg_t *birg) {
-       return birg->lv_chk;
-}
-
 static INLINE ir_exec_freq *
 _be_get_birg_exec_freq(const be_irg_t *birg) {
        return birg->exec_freq;
@@ -78,7 +73,6 @@ _be_get_birg_arch_env(const be_irg_t *birg) {
 
 #define be_get_birg_exec_freq(birg)        _be_get_birg_exec_freq(birg)
 #define be_get_birg_liveness(birg)         _be_get_birg_liveness(birg)
-#define be_get_birg_liveness_chk(birg)     _be_get_birg_liveness_chk(birg)
 #define be_get_birg_dom_front(birg)        _be_get_birg_dom_front(birg)
 #define be_get_birg_irg(birg)              _be_get_birg_irg(birg)