mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 20:23:59 +00:00
[PM] Run clang-format on a few lines that I missed in my first pass,
pulling them under 80-columns. No functionality changed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194856 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -146,10 +146,10 @@ void AnalysisManager::invalidateImpl(void *PassID, Function *F) {
|
|||||||
assert(F->getParent() == M &&
|
assert(F->getParent() == M &&
|
||||||
"Invalidating a pass over a function from another module!");
|
"Invalidating a pass over a function from another module!");
|
||||||
|
|
||||||
FunctionAnalysisResultMapT::iterator RI = FunctionAnalysisResults.find(std::make_pair(PassID, F));
|
FunctionAnalysisResultMapT::iterator RI =
|
||||||
|
FunctionAnalysisResults.find(std::make_pair(PassID, F));
|
||||||
if (RI == FunctionAnalysisResults.end())
|
if (RI == FunctionAnalysisResults.end())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
FunctionAnalysisResultLists[F].erase(RI->second);
|
FunctionAnalysisResultLists[F].erase(RI->second);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user