Skip to content

Commit 26d171e

Browse files
author
Kai Luo
committed
Use stable sorting
1 parent 915099c commit 26d171e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/symbolize/gimli/xcoff.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl<'a> Object<'a> {
135135
}
136136
})
137137
.collect::<Vec<_>>();
138-
syms.sort_unstable_by_key(|s| s.address);
138+
syms.sort_by_key(|s| s.address);
139139
return Some(Object { syms, file });
140140
}
141141

0 commit comments

Comments
 (0)