From ffd6c4d8ff3e0657ab5d04b39f782af395c558a5 Mon Sep 17 00:00:00 2001 From: Chris Wailes Date: Thu, 29 Sep 2022 13:42:28 -0700 Subject: [PATCH] Remove bench_black_box from the list of unstable features --- crates/core_arch/src/lib.rs | 1 - crates/stdarch-test/src/lib.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/crates/core_arch/src/lib.rs b/crates/core_arch/src/lib.rs index 124d844f1e..5a9727a0a9 100644 --- a/crates/core_arch/src/lib.rs +++ b/crates/core_arch/src/lib.rs @@ -31,7 +31,6 @@ f16c_target_feature, allow_internal_unstable, decl_macro, - bench_black_box, asm_const, target_feature_11 )] diff --git a/crates/stdarch-test/src/lib.rs b/crates/stdarch-test/src/lib.rs index 078736c66a..eba17771ca 100644 --- a/crates/stdarch-test/src/lib.rs +++ b/crates/stdarch-test/src/lib.rs @@ -3,7 +3,6 @@ //! This basically just disassembles the current executable and then parses the //! output once globally and then provides the `assert` function which makes //! assertions about the disassembly of a function. -#![feature(bench_black_box)] // For black_box #![deny(rust_2018_idioms)] #![allow(clippy::missing_docs_in_private_items, clippy::print_stdout)]