bechordal: Remove the pointless wrapper macro get_block_border_head().
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 24 Nov 2012 12:25:30 +0000 (13:25 +0100)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 24 Nov 2012 12:25:30 +0000 (13:25 +0100)
ir/be/bechordal_t.h

index eb51fc4..6b8efc1 100644 (file)
@@ -67,12 +67,11 @@ struct be_chordal_env_t {
        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) {
+static inline struct list_head *get_block_border_head(be_chordal_env_t const *const inf, ir_node *const bl)
+{
   return pmap_get(list_head, inf->border_heads, bl);
 }
 
-#define get_block_border_head(info, bl)     _get_block_border_head(info, bl)
-
 #define foreach_border_head(head, pos)      list_for_each_entry_reverse(border_t, pos, head, list)
 
 /**