[lld/mac] Fix start-stop.s test with expensive checks enabled

See e.g. https://lab.llvm.org/buildbot/#/builders/16/builds/14317
Not 100% sure why this fails yet, but this fixes it. Let's get
the bots green again first :)

Differential Revision: https://reviews.llvm.org/D106711
This commit is contained in:
Nico Weber 2021-07-23 16:54:19 -04:00
parent c2c43132f6
commit 04f5eb407c

View File

@ -146,10 +146,8 @@ void OutputSegment::sortOutputSections() {
}
void macho::sortOutputSegments() {
// sort() instead of stable_sort() is fine because segmentOrder() is
// name-based and getOrCreateOutputSegment() makes there's only a single
// segment for every name.
llvm::sort(outputSegments, compareByOrder<OutputSegment *>(segmentOrder));
llvm::stable_sort(outputSegments,
compareByOrder<OutputSegment *>(segmentOrder));
}
static DenseMap<StringRef, OutputSegment *> nameToOutputSegment;