about summary refs log tree commit diff
path: root/compiler/rustc_passes/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-10-28 16:25:56 +0000
committerbors <bors@rust-lang.org>2024-10-28 16:25:56 +0000
commit3f1be1ec7ec3d8e80beb381ee82164a0aa3ca777 (patch)
tree5f80bff44416146cfd7dadade45acde6bcf9926e /compiler/rustc_passes/src
parent9f57edf2e261ade3c926d69459162057f15164d6 (diff)
parentd066dfdb835f15fe2c4d2bdb31d88cb948b360ad (diff)
downloadrust-3f1be1ec7ec3d8e80beb381ee82164a0aa3ca777.tar.gz
rust-3f1be1ec7ec3d8e80beb381ee82164a0aa3ca777.zip
Auto merge of #132145 - RalfJung:stdarch, r=Amanieu
bump stdarch

This lets us remove a hack from https://github.com/rust-lang/rust/pull/131349.

r? `@Amanieu`

try-job: test-various
Diffstat (limited to 'compiler/rustc_passes/src')
-rw-r--r--compiler/rustc_passes/src/stability.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_passes/src/stability.rs b/compiler/rustc_passes/src/stability.rs
index 466ea32735b..f69cc74fba2 100644
--- a/compiler/rustc_passes/src/stability.rs
+++ b/compiler/rustc_passes/src/stability.rs
@@ -189,9 +189,6 @@ impl<'a, 'tcx> Annotator<'a, 'tcx> {
             && let Some(fn_sig) = fn_sig
             && const_stab.is_const_stable()
             && !stab.is_some_and(|(s, _)| s.is_stable())
-            // FIXME: we skip this check targets until
-            // <https://github.com/rust-lang/stdarch/pull/1654> propagates.
-            && false
         {
             self.tcx
                 .dcx()