We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#![allow(out_of_scope_macro_calls)]
1 parent 01b0b37 commit 61a040bCopy full SHA for 61a040b
src/probestack.rs
@@ -48,6 +48,8 @@
48
#![cfg(not(feature = "no-asm"))]
49
// We only define stack probing for these architectures today.
50
#![cfg(any(target_arch = "x86_64", target_arch = "x86"))]
51
+// FIXME(rust-lang/rust#126984): Remove allow once lint is fixed
52
+#![allow(out_of_scope_macro_calls)]
53
54
extern "C" {
55
pub fn __rust_probestack();
0 commit comments