Skip to content

Commit

Permalink
externref: Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Jun 15, 2020
1 parent 618c278 commit 6d88167
Show file tree
Hide file tree
Showing 8 changed files with 150 additions and 251 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/environ/src/cranelift.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ impl binemit::StackmapSink for StackMapSink {

impl StackMapSink {
fn finish(mut self) -> Vec<StackMapInformation> {
self.infos.sort_by_key(|info| info.code_offset);
self.infos.sort_unstable_by_key(|info| info.code_offset);
self.infos
}
}
Expand Down
Loading

0 comments on commit 6d88167

Please sign in to comment.