diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-11-26 22:16:17 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-11-26 22:16:17 +0000 |
commit | 98b35447057e783168a192366a4158bc7b722998 (patch) | |
tree | 512d02367687f8b5128c466ed2a0485bc9742d89 /polly | |
parent | f18753b8d0af54683d487546ab24028d6da5c9f1 (diff) | |
download | bcm5719-llvm-98b35447057e783168a192366a4158bc7b722998.tar.gz bcm5719-llvm-98b35447057e783168a192366a4158bc7b722998.zip |
remove dependence on CLOOG_FOUND for PollyVectorizerChoice
When polly was configured with cmake without cloog, compilation stopped with:
../tools/polly/lib/CodeGen/BlockGenerators.cpp:662: error: 'PollyVectorizerChoice' was not declared in this scope
../tools/polly/lib/CodeGen/BlockGenerators.cpp:662: error: 'VECTORIZER_FIRST_NEED_GROUPED_UNROLL' was not declared in this scope
llvm-svn: 168623
Diffstat (limited to 'polly')
-rw-r--r-- | polly/include/polly/CodeGen/CodeGeneration.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/polly/include/polly/CodeGen/CodeGeneration.h b/polly/include/polly/CodeGen/CodeGeneration.h index 6afc98db402..e3b4a90e144 100644 --- a/polly/include/polly/CodeGen/CodeGeneration.h +++ b/polly/include/polly/CodeGen/CodeGeneration.h @@ -13,7 +13,6 @@ #define POLLY_CODEGENERATION_H #include "polly/Config/config.h" -#ifdef CLOOG_FOUND namespace polly { enum VectorizerChoice { @@ -26,6 +25,5 @@ namespace polly { extern VectorizerChoice PollyVectorizerChoice; } -#endif // CLOOG_FOUND #endif // POLLY_CODEGENERATION_H |