sparc: remove old code which was only valid for old beabi handling
[libfirm] / ir / be / becopyilp_t.h
index 484fb0f..e97d686 100644 (file)
@@ -27,7 +27,6 @@
 #ifndef FIRM_BE_BECOPYILP_T_H
 #define FIRM_BE_BECOPYILP_T_H
 
-#include "firm_config.h"
 #include "firm_types.h"
 #include "pset.h"
 #include "becopyopt_t.h"
@@ -87,7 +86,7 @@ void free_size_red(size_red_t *sr);
  *       units (ou's) args could be merged and weights are accumulated.
  *       Is this necessary?
  */
-static INLINE int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) {
+static inline int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg) {
        int    i;
        unit_t *curr;
 
@@ -118,14 +117,7 @@ static INLINE int co_ilp_get_costs(copy_opt_t *co, ir_node *root, ir_node *arg)
 
 #ifdef WITH_ILP
 #include <lpp/lpp.h>
-
-#define LPP_SOLVE_NET
-
-#ifdef LPP_SOLVE_NET
-#  include <lpp/lpp_net.h>
-#else
-#  include <lpp/lpp_cplex.h>
-#endif
+#include <lpp/lpp_net.h>
 
 #define EPSILON 0.00001
 
@@ -155,6 +147,6 @@ void free_ilp_env(ilp_env_t *ienv);
 #define name_cdd_sorted(buf, char1, int1, int2) \
                        name_cdd(buf, char1, MIN(int1, int2), MAX(int1, int2))
 
-#endif /* WITH_ILP */
+#endif
 
-#endif /* FIRM_BE_BECOPYILP_T_H */
+#endif