X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeirg_t.h;h=c2e34373370178464b69aa9420463f91c9ed29e0;hb=d26f85fe13d8aef7526144370a693d13c2f02578;hp=2f6cbbf215a82e7b2e7b7cdc93b45bb2d908af43;hpb=39f3a8dbd0f00f90b7b12a849d1bf7b9c1329479;p=libfirm diff --git a/ir/be/beirg_t.h b/ir/be/beirg_t.h index 2f6cbbf21..c2e343733 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,8 @@ #include "beirg.h" #include "be_t.h" +#include "beabi.h" +#include "irlivechk.h" /** * An ir_graph with additional analysis data about this irg. Also includes some @@ -44,27 +46,27 @@ struct be_irg_t { be_lv_t *lv; }; -static INLINE be_lv_t * +static inline be_lv_t * _be_get_birg_liveness(const be_irg_t *birg) { return birg->lv; } -static INLINE ir_exec_freq * +static inline ir_exec_freq * _be_get_birg_exec_freq(const be_irg_t *birg) { return birg->exec_freq; } -static INLINE be_dom_front_info_t * +static inline be_dom_front_info_t * _be_get_birg_dom_front(const be_irg_t *birg) { return birg->dom_front; } -static INLINE ir_graph * +static inline ir_graph * _be_get_birg_irg(const be_irg_t *birg) { return birg->irg; } -static INLINE const arch_env_t * +static inline const arch_env_t * _be_get_birg_arch_env(const be_irg_t *birg) { return birg->main_env->arch_env; }