Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/lib/DebugInfo/GSYM/GsymCreator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ void GsymCreator::prepareMergedFunctions(OutputAggregator &Out) {
if (Funcs.size() < 2)
return;

// Sort the function infos by address range first
llvm::sort(Funcs);
// Sort the function infos by address range first, preserving input order
llvm::stable_sort(Funcs);
std::vector<FunctionInfo> TopLevelFuncs;

// Add the first function info to the top level functions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# FIXME: Currently disabled as it fails on some Linux hosts
# UNSUPPORTED: true


## Test that reconstructs a dSYM file from YAML and generates a gsym from it. The gsym has callsite info and merged functions.

# RUN: split-file %s %t
Expand Down
Loading