forked from OSchip/llvm-project
Belatedly address some code review from Chris.
As a side note, I really dislike array_pod_sort... Do we really still care about any STL implementations that get this so wrong? Does libc++? llvm-svn: 153834
This commit is contained in:
parent
cdb1f8cff1
commit
45ae88f5fc
|
@ -552,7 +552,7 @@ bool Inliner::removeDeadFunctions(CallGraph &CG, bool AlwaysInlineOnly) {
|
|||
// Note that it doesn't matter that we are iterating over a non-stable order
|
||||
// here to do this, it doesn't matter which order the functions are deleted
|
||||
// in.
|
||||
std::sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
|
||||
array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
|
||||
FunctionsToRemove.erase(std::unique(FunctionsToRemove.begin(),
|
||||
FunctionsToRemove.end()),
|
||||
FunctionsToRemove.end());
|
||||
|
|
Loading…
Reference in New Issue