X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeirg.h;h=9abac301b60ff82ef2fc482152ddfe143a1d7c9e;hb=24d4d90a8a18fd1e2157787efc06fb3c9c7f2380;hp=8970cf481e445525a1226001b2068d8691160bb3;hpb=381cf8f2c9b564356058b2390567e3bc1602131d;p=libfirm diff --git a/ir/be/beirg.h b/ir/be/beirg.h index 8970cf481..9abac301b 100644 --- a/ir/be/beirg.h +++ b/ir/be/beirg.h @@ -31,9 +31,6 @@ #include "be_t.h" #include "irtypes.h" -void be_assure_dom_front(ir_graph *irg); -void be_invalidate_dom_front(ir_graph *irg); - void be_assure_live_sets(ir_graph *irg); void be_assure_live_chk(ir_graph *irg); /** @@ -48,7 +45,7 @@ void be_invalidate_live_sets(ir_graph *irg); void be_invalidate_live_chk(ir_graph *irg); /** - * frees all memory allocated by birg structures (liveness, dom_front, ...). + * frees all memory allocated by birg structures (liveness, ...). * The memory of the birg structure itself is not freed. */ void be_free_birg(ir_graph *irg); @@ -87,7 +84,6 @@ typedef struct be_irg_t { be_main_env_t *main_env; be_abi_irg_t *abi; ir_exec_freq *exec_freq; - be_dom_front_info_t *dom_front; be_lv_t *lv; be_stack_layout_t stack_layout; unsigned *allocatable_regs; /**< registers available for the @@ -121,11 +117,6 @@ static inline ir_exec_freq *be_get_irg_exec_freq(const ir_graph *irg) return be_birg_from_irg(irg)->exec_freq; } -static inline be_dom_front_info_t *be_get_irg_dom_front(const ir_graph *irg) -{ - return be_birg_from_irg(irg)->dom_front; -} - static inline be_abi_irg_t *be_get_irg_abi(const ir_graph *irg) { return be_birg_from_irg(irg)->abi;