[lld/mac] Fix start-stop.s test with expensive checks enabled
authorNico Weber <thakis@chromium.org>
Fri, 23 Jul 2021 20:54:19 +0000 (16:54 -0400)
committerNico Weber <thakis@chromium.org>
Fri, 23 Jul 2021 21:01:16 +0000 (17:01 -0400)
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

lld/MachO/OutputSegment.cpp

index 8a050c4..7345bf0 100644 (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;