Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #82928

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f847ff1
Added #[repr(transparent)] to core::cmp::Reverse
imbrem Feb 8, 2021
095bf01
Improve sift_down performance in BinaryHeap
hanmertens Jan 17, 2021
516988b
Impl StatementKind::CopyNonOverlapping
JulianKnodt Oct 3, 2020
a058d44
Update fmt and use of memcpy
JulianKnodt Oct 5, 2020
5aba3da
Update match branches
JulianKnodt Oct 5, 2020
9fde038
Update interpret step
JulianKnodt Nov 7, 2020
0686d5d
Update cranelift
JulianKnodt Dec 29, 2020
8eb6a16
Replace todos with impls
JulianKnodt Jan 23, 2021
ed665d2
Change CopyNonOverlapping::codegen_ssa
JulianKnodt Jan 23, 2021
250b7b7
Build StKind::CopyOverlapping
JulianKnodt Jan 23, 2021
aff18fa
Switch to changing cp_non_overlap in tform
JulianKnodt Jan 23, 2021
1dda668
Clean up todos
JulianKnodt Feb 26, 2021
10a4c67
Add regression test for #75525
bugadani Mar 5, 2021
e64138c
use pat<no_top_alt> for patterns in let bindings
mark-i-m Feb 13, 2021
c946d1d
Bump libc dependency of std to 0.2.88.
de-vri-es Mar 3, 2021
95e096d
Change x64 size checks to not apply to x32.
hvdijk Mar 6, 2021
402a00a
clippy: fix or-pattern in let binding
mark-i-m Mar 8, 2021
469c030
Update CONTRIBUTING.md
henryboisdequin Mar 8, 2021
bf40ac6
Make opening sentence friendlier for new contributors
henrytheswimmer Mar 9, 2021
01c9141
Rollup merge of #77511 - JulianKnodt:st_kind_cpy, r=oli-obk
m-ou-se Mar 9, 2021
ad89b9e
Rollup merge of #81127 - hanmertens:binary_heap_sift_down_perf, r=dto…
m-ou-se Mar 9, 2021
d3f7b9a
Rollup merge of #81879 - imbrem:make-reverse-repr-transparent, r=m-ou-se
m-ou-se Mar 9, 2021
8684eb9
Rollup merge of #82048 - mark-i-m:or-pat-type-ascription, r=petrochenkov
m-ou-se Mar 9, 2021
bfa0873
Rollup merge of #82731 - de-vri-es:bump-libc-for-std, r=Mark-Simulacrum
m-ou-se Mar 9, 2021
5574680
Rollup merge of #82799 - bugadani:codegen-tests, r=nagisa
m-ou-se Mar 9, 2021
9c400ba
Rollup merge of #82841 - hvdijk:x32, r=joshtriplett
m-ou-se Mar 9, 2021
07d5de3
Rollup merge of #82887 - henryboisdequin:improve-contributing-md, r=j…
m-ou-se Mar 9, 2021
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
Next Next commit
Added #[repr(transparent)] to core::cmp::Reverse
  • Loading branch information
imbrem committed Feb 8, 2021
commit f847ff1511825224a19055f6d8646136becc15eb
1 change: 1 addition & 0 deletions library/core/src/cmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,7 @@ impl Ordering {
/// ```
#[derive(PartialEq, Eq, Debug, Copy, Clone, Default, Hash)]
#[stable(feature = "reverse_cmp_key", since = "1.19.0")]
#[repr(transparent)]
pub struct Reverse<T>(#[stable(feature = "reverse_cmp_key", since = "1.19.0")] pub T);

#[stable(feature = "reverse_cmp_key", since = "1.19.0")]
Expand Down