bescripts: Copy all common node attributes into the constructor variants.
[libfirm] / ir / be / becopyilp_t.h
index 8665f8b..7d81745 100644 (file)
@@ -86,8 +86,7 @@ void free_size_red(size_red_t *sr);
  *       Is this necessary?
  */
 static inline int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) {
-       int    i;
-       unit_t *curr;
+       int i;
 
        /* search optimization unit for phi */
        list_for_each_entry(unit_t, curr, &co->units, units)
@@ -138,11 +137,4 @@ lpp_sol_state_t ilp_go(ilp_env_t *ienv);
 
 void free_ilp_env(ilp_env_t *ienv);
 
-
-#define name_cdd(buf, char1, int1, int2) \
-                       (snprintf(buf, sizeof(buf), "%c_%d_%d", char1, int1, int2), buf)
-
-#define name_cdd_sorted(buf, char1, int1, int2) \
-                       name_cdd(buf, char1, MIN(int1, int2), MAX(int1, int2))
-
 #endif