add some more missing ifdef CLOOG_FOUND
llvm-svn: 156306
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp
index 72a6c82..9d39ec2 100644
--- a/polly/lib/CodeGen/CodeGeneration.cpp
+++ b/polly/lib/CodeGen/CodeGeneration.cpp
@@ -20,9 +20,10 @@
//
//===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "polly-codegen"
-
#include "polly/Cloog.h"
+#ifdef CLOOG_FOUND
+
+#define DEBUG_TYPE "polly-codegen"
#include "polly/Dependences.h"
#include "polly/LinkAllPasses.h"
#include "polly/ScopInfo.h"
@@ -937,3 +938,5 @@
Pass *polly::createCodeGenerationPass() {
return new CodeGeneration();
}
+
+#endif // CLOOG_FOUND