X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbecopyilp.c;h=3e2469e2ca4e8010c57948cda09ca89180056007;hb=6e3e499d6c68aee0c6a9ada6a99f16c4f6f8445b;hp=296f1a48baa2d3d5f2e862d1718e70dad907a9d3;hpb=3ca8e2bf6146966e41eea636ae806a25b76f2b0c;p=libfirm diff --git a/ir/be/becopyilp.c b/ir/be/becopyilp.c index 296f1a48b..3e2469e2c 100644 --- a/ir/be/becopyilp.c +++ b/ir/be/becopyilp.c @@ -8,6 +8,12 @@ * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ + +#ifdef WITH_ILP + #include "becopyilp_t.h" #include "beifg_t.h" @@ -181,3 +187,10 @@ void free_ilp_env(ilp_env_t *ienv) { free_lpp(ienv->lp); free(ienv); } + +#else /* WITH_ILP */ + +static void only_that_you_can_compile_without_WITH_ILP_defined(void) { +} + +#endif /* WITH_ILP */