warning fixes
[libfirm] / ir / be / becopyilp1.c
index 5dae7a6..c6b287f 100644 (file)
@@ -6,10 +6,7 @@
  * 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
 #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) {
-
-}
-
 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) {
+static INLINE void only_that_you_can_compile_without_WITH_ILP_defined(void) {
 }
 
 #endif /* WITH_ILP */