mirror of git://gcc.gnu.org/git/gcc.git
Add missing HAVE_cloog guards
* graphite-isl-ast-to-gimple.c: Add missing guards. From-SVN: r212125
This commit is contained in:
parent
f6cc31036a
commit
7d1ceb9320
|
|
@ -1,3 +1,7 @@
|
||||||
|
2014-06-29 Tobias Grosser <tobias@grosser.es>
|
||||||
|
|
||||||
|
* graphite-isl-ast-to-gimple.c: Add missing guards.
|
||||||
|
|
||||||
2014-06-29 Roman Gareev <gareevroman@gmail.com>
|
2014-06-29 Roman Gareev <gareevroman@gmail.com>
|
||||||
|
|
||||||
* Makefile.in:
|
* Makefile.in:
|
||||||
|
|
|
||||||
|
|
@ -20,10 +20,12 @@ along with GCC; see the file COPYING3. If not see
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_cloog
|
||||||
#include <isl/set.h>
|
#include <isl/set.h>
|
||||||
#include <isl/map.h>
|
#include <isl/map.h>
|
||||||
#include <isl/union_map.h>
|
#include <isl/union_map.h>
|
||||||
#include <isl/ast_build.h>
|
#include <isl/ast_build.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "coretypes.h"
|
#include "coretypes.h"
|
||||||
|
|
@ -41,6 +43,7 @@ along with GCC; see the file COPYING3. If not see
|
||||||
#include "tree-data-ref.h"
|
#include "tree-data-ref.h"
|
||||||
#include "sese.h"
|
#include "sese.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_cloog
|
||||||
#include "graphite-poly.h"
|
#include "graphite-poly.h"
|
||||||
#include "graphite-isl-ast-to-gimple.h"
|
#include "graphite-isl-ast-to-gimple.h"
|
||||||
|
|
||||||
|
|
@ -131,3 +134,4 @@ graphite_regenerate_ast_isl (scop_p scop)
|
||||||
timevar_pop (TV_GRAPHITE_CODE_GEN);
|
timevar_pop (TV_GRAPHITE_CODE_GEN);
|
||||||
return !graphite_regenerate_error;
|
return !graphite_regenerate_error;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue