move backend into libfirm
[libfirm] / ir / be / becopyilp1.c
1 /**
2  * Author:      Daniel Grund
3  * Date:                17.05.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  * CVS-ID:      $Id$
7  *
8  * ILP formalization using:
9  *   ????
10  */
11
12 #ifdef HAVE_CONFIG_H
13 #include "config.h"
14 #endif /* HAVE_CONFIG_H */
15
16 #ifdef WITH_ILP
17
18 #include "becopyilp_t.h"
19
20 #define DEBUG_LVL 1
21
22 typedef struct _my_env_t {
23         int dummy;
24 } my_env_t;
25
26
27 int co_solve_ilp1(copy_opt_t *co, double time_limit) {
28         return 1;
29 }
30
31 #else /* WITH_ILP */
32
33 static INLINE void only_that_you_can_compile_without_WITH_ILP_defined(void) {
34 }
35
36 #endif /* WITH_ILP */