summaryrefslogtreecommitdiffstats
path: root/polly/lib/CodeGen/CodeGeneration.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2014-07-19 18:40:17 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2014-07-19 18:40:17 +0000
commit8ca36815eec998bbc21d2749fe6029812d60725a (patch)
treeca921c6c732caf3fde1cdb8666245a5cc51d339e /polly/lib/CodeGen/CodeGeneration.cpp
parent1b8d83796dd1edb7f8c30543620ac83690aa2558 (diff)
downloadbcm5719-llvm-8ca36815eec998bbc21d2749fe6029812d60725a.tar.gz
bcm5719-llvm-8ca36815eec998bbc21d2749fe6029812d60725a.zip
Update for RegionInfo changes.
Mostly related to missing includes and renaming of the pass to RegionInfoPass. llvm-svn: 213457
Diffstat (limited to 'polly/lib/CodeGen/CodeGeneration.cpp')
-rw-r--r--polly/lib/CodeGen/CodeGeneration.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp
index 59373e5e9d7..1f093fb25c9 100644
--- a/polly/lib/CodeGen/CodeGeneration.cpp
+++ b/polly/lib/CodeGen/CodeGeneration.cpp
@@ -1051,7 +1051,7 @@ public:
AU.addRequired<CloogInfo>();
AU.addRequired<Dependences>();
AU.addRequired<DominatorTreeWrapperPass>();
- AU.addRequired<RegionInfo>();
+ AU.addRequired<RegionInfoPass>();
AU.addRequired<ScalarEvolution>();
AU.addRequired<ScopDetection>();
AU.addRequired<ScopInfo>();
@@ -1067,7 +1067,7 @@ public:
// FIXME: We do not yet add regions for the newly generated code to the
// region tree.
- AU.addPreserved<RegionInfo>();
+ AU.addPreserved<RegionInfoPass>();
AU.addPreserved<TempScopInfo>();
AU.addPreserved<ScopInfo>();
AU.addPreservedID(IndependentBlocksID);
@@ -1084,7 +1084,7 @@ INITIALIZE_PASS_BEGIN(CodeGeneration, "polly-codegen",
INITIALIZE_PASS_DEPENDENCY(CloogInfo);
INITIALIZE_PASS_DEPENDENCY(Dependences);
INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass);
-INITIALIZE_PASS_DEPENDENCY(RegionInfo);
+INITIALIZE_PASS_DEPENDENCY(RegionInfoPass);
INITIALIZE_PASS_DEPENDENCY(ScalarEvolution);
INITIALIZE_PASS_DEPENDENCY(ScopDetection);
INITIALIZE_PASS_DEPENDENCY(DataLayoutPass);
OpenPOWER on IntegriCloud