X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp_t.h;h=7d817456ce0518966bf897c7c47eaa0d5704c88c;hb=2d83376719b1bd5fd45da73de41d0e3656bb52da;hp=5f31c12d31a4d719a8760171c239eaf7fd2c6177;hpb=85f517eca982e6a4e1d1848eb67634ae33b70de9;p=libfirm diff --git a/ir/be/becopyilp_t.h b/ir/be/becopyilp_t.h index 5f31c12d3..7d817456c 100644 --- a/ir/be/becopyilp_t.h +++ b/ir/be/becopyilp_t.h @@ -22,7 +22,6 @@ * @brief Common stuff used by all ILP formulations. * @author Daniel Grund * @date 28.02.2006 - * @version $Id$ */ #ifndef FIRM_BE_BECOPYILP_T_H #define FIRM_BE_BECOPYILP_T_H @@ -87,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) @@ -139,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