mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-23 05:20:43 +00:00

This commit is intended to follow the stabilization disposition of the FCP that has now finished in #84223. This stabilizes the ability to flag thread local initializers as `const` expressions which enables the macro to generate more efficient code for accessing it, notably removing runtime checks for initialization. More information can also be found in #84223 as well as the tests where the feature usage was removed in this PR. Closes #84223
21 lines
403 B
Rust
21 lines
403 B
Rust
#![feature(assert_matches)]
|
|
#![feature(bool_to_option)]
|
|
#![feature(core_intrinsics)]
|
|
#![feature(hash_raw_entry)]
|
|
#![feature(iter_zip)]
|
|
#![feature(let_else)]
|
|
#![feature(min_specialization)]
|
|
#![feature(extern_types)]
|
|
|
|
#[macro_use]
|
|
extern crate tracing;
|
|
#[macro_use]
|
|
extern crate rustc_data_structures;
|
|
#[macro_use]
|
|
extern crate rustc_macros;
|
|
|
|
pub mod cache;
|
|
pub mod dep_graph;
|
|
pub mod ich;
|
|
pub mod query;
|