X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbechordal_t.h;h=a7dcb36abb45c0c9096775b21b33ab8fc42ad07a;hb=f85d684391adac08d54c3fdcda868e6392de2ffb;hp=e4ff6786773012679a4e22673c8f206a3c84114f;hpb=7a178059678ff6c6094a7cd8fac5644367417102;p=libfirm diff --git a/ir/be/bechordal_t.h b/ir/be/bechordal_t.h index e4ff67867..a7dcb36ab 100644 --- a/ir/be/bechordal_t.h +++ b/ir/be/bechordal_t.h @@ -68,11 +68,11 @@ struct be_chordal_env_t { const arch_register_class_t *cls; /**< The current register class. */ pmap *border_heads; /**< Maps blocks to border heads. */ be_ifg_t *ifg; /**< The interference graph. */ - bitset_t *ignore_colors;/**< A set of colors which shall be ignored in register allocation. */ + bitset_t *allocatable_regs; /**< set of allocatable registers */ }; static inline struct list_head *_get_block_border_head(const be_chordal_env_t *inf, ir_node *bl) { - return pmap_get(inf->border_heads, bl); + return (list_head*)pmap_get(inf->border_heads, bl); } #define get_block_border_head(info, bl) _get_block_border_head(info, bl)