X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbera.h;h=cab834512c12b7473d071069f907fa910237c35f;hb=03300a88ae8d61bb6c2129dcf55937f3250c1217;hp=126b26053c55bd1d3a1274cc8008b63929156d55;hpb=f2c2e45eb4e677fef5bf6a8e418b2a22441172d5;p=libfirm diff --git a/ir/be/bera.h b/ir/be/bera.h index 126b26053..cab834512 100644 --- a/ir/be/bera.h +++ b/ir/be/bera.h @@ -33,7 +33,7 @@ #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); @@ -41,6 +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); +void be_allocate_registers(ir_graph *irg); #endif