added used_x87 flag, so the x87 simulator runs only if fp
[libfirm] / ir / be / becopyilp1.c
index 5dae7a6..2a0aca4 100644 (file)
@@ -6,30 +6,24 @@
  * CVS-ID:      $Id$
  *
  * ILP formalization using:
- *  - 2 classes of vars: Nodes- and optimality variables.
- *  - Clique constraints
- *  - Path constraints
- *  - Clique path constraints
+ *   ????
  */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif /* HAVE_CONFIG_H */
 
-#ifdef WITH_ILP
-
 #include "becopyilp_t.h"
 
 #define DEBUG_LVL 1
 
 typedef struct _my_env_t {
-       int foo;
+       int dummy;
 } my_env_t;
 
 
 static void ilp1_build(ilp_env_t *ienv) {
        ienv->lp = new_lpp(ienv->co->name, lpp_minimize);
-
 }
 
 static void ilp1_apply(ilp_env_t *ienv) {
@@ -39,11 +33,3 @@ static void ilp1_apply(ilp_env_t *ienv) {
 int co_solve_ilp1(copy_opt_t *co, double time_limit) {
        return 1;
 }
-
-
-#else /* WITH_ILP */
-
-static void only_that_you_can_compile_without_WITH_ILP_defined(void) {
-}
-
-#endif /* WITH_ILP */