We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e089d48 commit 1f3b6d8Copy full SHA for 1f3b6d8
lld/MachO/SyntheticSections.cpp
@@ -1248,10 +1248,7 @@ void SymtabSection::emitStabs() {
1248
}
1249
1250
1251
- llvm::stable_sort(symbolsNeedingStabs,
1252
- [&](const SortingPair &a, const SortingPair &b) {
1253
- return a.second < b.second;
1254
- });
+ llvm::stable_sort(symbolsNeedingStabs, llvm::less_second());
1255
1256
// Emit STABS symbols so that dsymutil and/or the debugger can map address
1257
// regions in the final binary to the source and object files from which they
0 commit comments