X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbera.h;h=cab834512c12b7473d071069f907fa910237c35f;hb=4f8e80463195b1fee6ebbeefb59722faf76134cc;hp=178e7b51f77c366e773d26a91961ce22eee223db;hpb=57fb9fc8605ae538d91ca191301e0d3c111cc3ba;p=libfirm diff --git a/ir/be/bera.h b/ir/be/bera.h index 178e7b51f..cab834512 100644 --- a/ir/be/bera.h +++ b/ir/be/bera.h @@ -27,15 +27,13 @@ #ifndef FIRM_BE_BERA_H #define FIRM_BE_BERA_H -#include - #include "irnode.h" #include "belive.h" #include "beirg.h" typedef struct be_ra_t { - void (*allocate)(be_irg_t *bi); /**< allocate registers on a graph */ + void (*allocate)(ir_graph *irg); /**< allocate registers on a graph */ } be_ra_t; void be_register_allocator(const char *name, be_ra_t *allocator); @@ -43,8 +41,6 @@ void be_register_allocator(const char *name, be_ra_t *allocator); /** * Do register allocation with currently selected register allocator */ -void be_allocate_registers(be_irg_t *birg); - -int (values_interfere)(const be_irg_t *birg, const ir_node *a, const ir_node *b); +void be_allocate_registers(ir_graph *irg); -#endif /* FIRM_BE_BERA_H */ +#endif