mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
Initialize AnalysisImpls for ImmutablePass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32498 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
279101eb1a
commit
689c683bcc
@ -399,7 +399,9 @@ public:
|
||||
// top level manager. Set up analysis resolver to connect them.
|
||||
AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
|
||||
P->setResolver(AR);
|
||||
initializeAnalysisImpl(P);
|
||||
addImmutablePass(IP);
|
||||
recordAvailableAnalysis(IP);
|
||||
}
|
||||
else
|
||||
addPass(P);
|
||||
@ -504,7 +506,9 @@ public:
|
||||
// top level manager. Set up analysis resolver to connect them.
|
||||
AnalysisResolver_New *AR = new AnalysisResolver_New(*this);
|
||||
P->setResolver(AR);
|
||||
initializeAnalysisImpl(P);
|
||||
addImmutablePass(IP);
|
||||
recordAvailableAnalysis(IP);
|
||||
}
|
||||
else
|
||||
addPass(P);
|
||||
@ -634,7 +638,6 @@ void PMDataManager::addPassToManager(Pass *P,
|
||||
|
||||
// Take a note of analysis required and made available by this pass.
|
||||
// Remove the analysis not preserved by this pass
|
||||
initializeAnalysisImpl(P);
|
||||
removeNotPreservedAnalysis(P);
|
||||
recordAvailableAnalysis(P);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user