X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeirg_t.h;h=61f0f28db51f5112061358d2697fbec0270eead1;hb=8974b94349462d835b33ad4f896d1821986458bd;hp=babc5aebab76bc864e1eddf45896bcaf1e5906f4;hpb=8eee0e6361868153ae82c8d8bdda1446a9af9084;p=libfirm diff --git a/ir/be/beirg_t.h b/ir/be/beirg_t.h index babc5aeba..61f0f28db 100644 --- a/ir/be/beirg_t.h +++ b/ir/be/beirg_t.h @@ -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)