1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[PM] Get rid of an unused variable in AnalysisManager::clear(IRUnitT&).

Reviewers: chandlerc

Subscribers: silvas, llvm-commits, mehdi_amini

Differential Revision: https://reviews.llvm.org/D27373

llvm-svn: 288597
This commit is contained in:
Justin Lebar 2016-12-03 19:49:31 +00:00
parent 13a5215569
commit a62db213e3

View File

@ -469,9 +469,6 @@ public:
if (DebugLogging)
dbgs() << "Clearing all analysis results for: " << IR.getName() << "\n";
// Clear all the invalidated results associated specifically with this
// function.
SmallVector<AnalysisKey *, 8> InvalidatedIDs;
auto ResultsListI = AnalysisResultLists.find(&IR);
if (ResultsListI == AnalysisResultLists.end())
return;