diff options
author | Hongbin Zheng <etherzhhb@gmail.com> | 2012-04-25 13:18:28 +0000 |
---|---|---|
committer | Hongbin Zheng <etherzhhb@gmail.com> | 2012-04-25 13:18:28 +0000 |
commit | 8a8466106cf3a53ee5eda010f3e7e784da77aaa2 (patch) | |
tree | 6d00a5689e70c10f64bcc51ce9fa1070cbde10f2 /polly/lib/CodeGen/CodeGeneration.cpp | |
parent | 3b11a16a44c56105067d5c090429b99835c168f5 (diff) | |
download | bcm5719-llvm-8a8466106cf3a53ee5eda010f3e7e784da77aaa2.tar.gz bcm5719-llvm-8a8466106cf3a53ee5eda010f3e7e784da77aaa2.zip |
Refactor: Move the code generation related header files to include/polly/CodeGen.
llvm-svn: 155547
Diffstat (limited to 'polly/lib/CodeGen/CodeGeneration.cpp')
-rw-r--r-- | polly/lib/CodeGen/CodeGeneration.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp index b91d0203dc1..4f46c9580a1 100644 --- a/polly/lib/CodeGen/CodeGeneration.cpp +++ b/polly/lib/CodeGen/CodeGeneration.cpp @@ -23,13 +23,13 @@ #define DEBUG_TYPE "polly-codegen" #include "polly/Cloog.h" -#include "polly/CodeGeneration.h" #include "polly/Dependences.h" #include "polly/LinkAllPasses.h" #include "polly/ScopInfo.h" #include "polly/TempScopInfo.h" -#include "polly/BlockGenerators.h" -#include "polly/LoopGenerators.h" +#include "polly/CodeGen/CodeGeneration.h" +#include "polly/CodeGen/BlockGenerators.h" +#include "polly/CodeGen/LoopGenerators.h" #include "polly/Support/GICHelper.h" #include "llvm/Module.h" |