X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbe_t.h;h=be17fb5a29b18922fe48c049b63009b19efe7481;hb=20df9de188b0d2200df1faf054840f25fa43a9ad;hp=6da99d4dab9d1882f42cff4e9b58114414016db8;hpb=e96155a7245cb7eee1de5980f8a158582a8dcff0;p=libfirm diff --git a/ir/be/be_t.h b/ir/be/be_t.h index 6da99d4da..be17fb5a2 100644 --- a/ir/be/be_t.h +++ b/ir/be/be_t.h @@ -13,11 +13,12 @@ #include "irgraph.h" #include "be.h" +#include "bearch.h" #include "beirgmod.h" struct _be_options_t { - char ilp_server[128]; char ilp_solver[128]; + char ilp_server[128]; }; struct _be_main_env_t { @@ -29,4 +30,11 @@ struct _be_main_env_t { firm_dbg_module_t *dbg; }; +struct _be_irg_t { + ir_graph *irg; + struct _be_main_env_t *main_env; + struct _be_abi_irg_t *abi; + struct _arch_code_generator_t *cg; +}; + #endif