X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp_t.h;h=1dcd6f344e7a6db8818601821d5ce523f8008e67;hb=ee5425ca1c172c4cf244de9864f8fd44ad2cb645;hp=a73d07e939b925e90aaaedca8f5c4bf1e5f4a739;hpb=68f1fef312ea0a037cf9815042ea30e95ce1b619;p=libfirm diff --git a/ir/be/becopyilp_t.h b/ir/be/becopyilp_t.h index a73d07e93..1dcd6f344 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 @@ -115,9 +114,8 @@ static inline int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) *****************************************************************************/ -#ifdef WITH_ILP -#include -#include +#include "lpp.h" +#include "lpp_net.h" #define EPSILON 0.00001 @@ -140,13 +138,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 - #endif