X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_t.h;h=206c5aca02974652f8d43b7e82ec08ddcb40ff92;hb=8a8b2522aac4612a24d51fc514e782a1f8b6f3f4;hp=dbf7e8dc5cbf038be5c2ba2b42d945520b876394;hpb=ea64ddabccc512b21b425e4d89fda5e4ffe124a6;p=libfirm diff --git a/ir/be/bechordal_t.h b/ir/be/bechordal_t.h index dbf7e8dc5..206c5aca0 100644 --- a/ir/be/bechordal_t.h +++ b/ir/be/bechordal_t.h @@ -112,9 +112,10 @@ enum { BE_CH_IFG_STD = 1, BE_CH_IFG_FAST = 2, - /* lower perm method */ - BE_CH_LOWER_PERM_SWAP = 1, - BE_CH_LOWER_PERM_COPY = 2 + /* lower perm options */ + BE_CH_LOWER_PERM_SWAP = (1 << 0), + BE_CH_LOWER_PERM_COPY = (1 << 1), + BE_CH_LOWER_PERM_STAT = (1 << 2) }; struct _be_ra_chordal_opts_t { @@ -122,7 +123,7 @@ struct _be_ra_chordal_opts_t { int spill_method; int copymin_method; int ifg_flavor; - int lower_perm_method; + int lower_perm_opt; char ilp_server[128]; char ilp_solver[128];