Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a228cef
Auto merge of #155607 - KowalskiThomas:kowalski/perf-use-get_unchecke…
bors Jun 8, 2026
d3eacc7
Auto merge of #157374 - khyperia:remove-UnevaluatedConstKind-def_id, …
bors Jun 8, 2026
50118a0
Auto merge of #157252 - heinwol:symbol-Interner-double-hashing, r=pet…
bors Jun 8, 2026
ba49796
Auto merge of #157557 - sgasho:link_llvm_dynamically_on_x86_mac, r=Zu…
bors Jun 9, 2026
98e3a4f
Auto merge of #129543 - fmease:obj-lt-def-gat, r=lcnr
bors Jun 9, 2026
b2d7674
Auto merge of #157480 - nikic:captures-metadata, r=RalfJung
bors Jun 10, 2026
e88033d
Auto merge of #157319 - xmakro:perf/lazy-depkind-reverse-index, r=cjg…
bors Jun 11, 2026
2a87e44
Auto merge of #156934 - saethlin:impossible-bounds-check, r=BoxyUwU
bors Jun 12, 2026
933d7aa
Reject `impl const Trait` since the right syntax is `const impl Trait…
oli-obk Jun 17, 2026
3843624
Rollup merge of #156795 - P8L1:fix-generic-reborrow-expr-use-visitor,…
GuillaumeGomez Jun 18, 2026
b5154d5
Rollup merge of #158009 - oli-obk:impl-const-impl-Trait, r=fee1-dead
GuillaumeGomez Jun 18, 2026
a3a0c13
Rollup merge of #158034 - kevin-valerio:fix/issue-158033-reborrow-sou…
GuillaumeGomez Jun 18, 2026
0a5fd3c
Rollup merge of #158072 - Turbo87:update-thin-vec, r=lqd
GuillaumeGomez Jun 18, 2026
cc6ac78
Rollup merge of #158074 - valentynkt:docs/accept-transient-errors, r=…
GuillaumeGomez Jun 18, 2026
e92bafe
Rollup merge of #158077 - Turbo87:bincode-replacement, r=GuillaumeGomez
GuillaumeGomez Jun 18, 2026
c155a75
Rollup merge of #158086 - Turbo87:renovate-config, r=marcoieni
GuillaumeGomez Jun 18, 2026
3caefd2
Rollup merge of #158088 - davidtwco:scalable-vector-debuginfo-no-opt,…
GuillaumeGomez Jun 18, 2026
ba7833b
Rollup merge of #158089 - GuillaumeGomez:jump-to-def-derive, r=Urgau
GuillaumeGomez Jun 18, 2026
f783649
Auto merge of #158098 - GuillaumeGomez:rollup-Rdbc7zf, r=GuillaumeGomez
bors Jun 18, 2026
ed36101
Auto merge of #158104 - jhpratt:rollup-EAw5CsW, r=jhpratt
bors Jun 18, 2026
bc28f3f
Auto merge of #157384 - addiesh:turbofisherwoman, r=oli-obk
bors Jun 19, 2026
15ce401
Prepare for merging from rust-lang/rust
invalid-email-address Jun 19, 2026
48f63d1
Merge ref '8e150217bafc' from rust-lang/rust
invalid-email-address Jun 19, 2026
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
2 changes: 1 addition & 1 deletion crates/core_arch/src/loongarch64/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub(super) const trait SimdExt: Sized {
macro_rules! impl_simd_ext {
($v:ident, $e:ty) => {
#[rustc_const_unstable(feature = "stdarch_const_helpers", issue = "none")]
impl const SimdExt for crate::core_arch::simd::$v {
const impl SimdExt for crate::core_arch::simd::$v {
type Elem = $e;

#[inline(always)]
Expand Down
4 changes: 2 additions & 2 deletions crates/core_arch/src/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl<T: SimdElement, const N: usize> Clone for Simd<T, N> {

#[rustc_const_unstable(feature = "stdarch_const_helpers", issue = "none")]
#[rustfmt::skip] // FIXME: https://github.com/rust-lang/stdarch/pull/2133#issuecomment-4524350350
impl<T: SimdElement, const N: usize> const crate::cmp::PartialEq for Simd<T, N> {
const impl<T: SimdElement, const N: usize> crate::cmp::PartialEq for Simd<T, N> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.as_array() == other.as_array()
Expand Down Expand Up @@ -301,7 +301,7 @@ impl<T: SimdElement, const N: usize> Clone for SimdM<T, N> {

#[rustc_const_unstable(feature = "stdarch_const_helpers", issue = "none")]
#[rustfmt::skip] // FIXME: https://github.com/rust-lang/stdarch/pull/2133#issuecomment-4524350350
impl<T: SimdElement, const N: usize> const crate::cmp::PartialEq for SimdM<T, N> {
const impl<T: SimdElement, const N: usize> crate::cmp::PartialEq for SimdM<T, N> {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.as_array() == other.as_array()
Expand Down
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
029c9e18dd1f4668e1d42bb187c1c263dfe20093
8e150217bafcaaaa0c45bf685c55fd56cec48598