diff options
author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-03-04 22:43:40 +0000 |
---|---|---|
committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-03-04 22:43:40 +0000 |
commit | f6557f98a24041358781ba6bdaa2f7870700377e (patch) | |
tree | 7c417bfb12ddef0690a7e901e7b3f3c379e1fdf4 /polly/lib/CodeGen/IslCodeGeneration.cpp | |
parent | eca51517808d0c4cec9a886f1d0d1c22ab31006f (diff) | |
download | bcm5719-llvm-f6557f98a24041358781ba6bdaa2f7870700377e.tar.gz bcm5719-llvm-f6557f98a24041358781ba6bdaa2f7870700377e.zip |
Rename the Dependences pass to DependenceInfo [NFC]
We rename the Dependences pass to DependenceInfo as a first step to a
caching pass policy. The new DependenceInfo pass will later provide
"Dependences" for a SCoP.
To keep consistency the test folder is renamed too.
llvm-svn: 231308
Diffstat (limited to 'polly/lib/CodeGen/IslCodeGeneration.cpp')
-rw-r--r-- | polly/lib/CodeGen/IslCodeGeneration.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/lib/CodeGen/IslCodeGeneration.cpp b/polly/lib/CodeGen/IslCodeGeneration.cpp index a4ebd560a42..e2eed5f4eec 100644 --- a/polly/lib/CodeGen/IslCodeGeneration.cpp +++ b/polly/lib/CodeGen/IslCodeGeneration.cpp @@ -25,7 +25,7 @@ #include "polly/CodeGen/IslAst.h" #include "polly/CodeGen/LoopGenerators.h" #include "polly/CodeGen/Utils.h" -#include "polly/Dependences.h" +#include "polly/DependenceInfo.h" #include "polly/LinkAllPasses.h" #include "polly/ScopInfo.h" #include "polly/Support/GICHelper.h" @@ -1002,7 +1002,7 @@ public: AU.addRequired<ScopInfo>(); AU.addRequired<LoopInfoWrapperPass>(); - AU.addPreserved<Dependences>(); + AU.addPreserved<DependenceInfo>(); AU.addPreserved<LoopInfoWrapperPass>(); AU.addPreserved<DominatorTreeWrapperPass>(); @@ -1026,7 +1026,7 @@ Pass *polly::createIslCodeGenerationPass() { return new IslCodeGeneration(); } INITIALIZE_PASS_BEGIN(IslCodeGeneration, "polly-codegen-isl", "Polly - Create LLVM-IR from SCoPs", false, false); -INITIALIZE_PASS_DEPENDENCY(Dependences); +INITIALIZE_PASS_DEPENDENCY(DependenceInfo); INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass); INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass); INITIALIZE_PASS_DEPENDENCY(RegionInfoPass); |