From c6b434e5a3279244c48a84e74387cbacf35a419c Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Sat, 28 Sep 2024 18:19:52 -0400 Subject: [PATCH] Revert "Temporarily `use define_rust_probestack;`" has been resolved. Remove the workaround that was introduced to suppress it. This reverts commit 254edbcad4cfd6a8af32e3297c1037d7984c3c49. --- library/compiler-builtins/src/probestack.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/library/compiler-builtins/src/probestack.rs b/library/compiler-builtins/src/probestack.rs index 46caf1676870..0c30384db385 100644 --- a/library/compiler-builtins/src/probestack.rs +++ b/library/compiler-builtins/src/probestack.rs @@ -120,10 +120,6 @@ macro_rules! define_rust_probestack { }; } -// FIXME(rust-lang/rust#126984): Remove allow once lint is fixed -#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] -use define_rust_probestack; - // Our goal here is to touch each page between %rsp+8 and %rsp+8-%rax, // ensuring that if any pages are unmapped we'll make a page fault. //