mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

Rollup of 7 pull requests Successful merges: - #137314 (change definitely unproductive cycles to error) - #137701 (Convert `ShardedHashMap` to use `hashbrown::HashTable`) - #138269 (uefi: fs: Implement FileType, FilePermissions and FileAttr) - #138331 (Use `RUSTC_LINT_FLAGS` more) - #138345 (Some autodiff cleanups) - #138387 (intrinsics: remove unnecessary leading underscore from argument names) - #138390 (fix incorrect tracing log) r? `@ghost` `@rustbot` modify labels: rollup
58 lines
1.4 KiB
Rust
58 lines
1.4 KiB
Rust
//! Various checks
|
|
//!
|
|
//! # Note
|
|
//!
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
// tidy-alphabetical-start
|
|
#![allow(internal_features)]
|
|
#![cfg_attr(doc, recursion_limit = "256")] // FIXME(nnethercote): will be removed by #124141
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
|
#![doc(rust_logo)]
|
|
#![feature(let_chains)]
|
|
#![feature(map_try_insert)]
|
|
#![feature(rustdoc_internals)]
|
|
#![feature(try_blocks)]
|
|
// tidy-alphabetical-end
|
|
|
|
use rustc_middle::query::Providers;
|
|
|
|
pub mod abi_test;
|
|
mod check_attr;
|
|
pub mod dead;
|
|
mod debugger_visualizer;
|
|
mod diagnostic_items;
|
|
pub mod entry;
|
|
mod errors;
|
|
#[cfg(debug_assertions)]
|
|
pub mod hir_id_validator;
|
|
pub mod input_stats;
|
|
mod lang_items;
|
|
pub mod layout_test;
|
|
mod lib_features;
|
|
mod liveness;
|
|
pub mod loops;
|
|
mod naked_functions;
|
|
mod reachable;
|
|
pub mod stability;
|
|
mod upvars;
|
|
mod weak_lang_items;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
|
|
|
pub fn provide(providers: &mut Providers) {
|
|
check_attr::provide(providers);
|
|
dead::provide(providers);
|
|
debugger_visualizer::provide(providers);
|
|
diagnostic_items::provide(providers);
|
|
entry::provide(providers);
|
|
lang_items::provide(providers);
|
|
lib_features::provide(providers);
|
|
loops::provide(providers);
|
|
naked_functions::provide(providers);
|
|
liveness::provide(providers);
|
|
reachable::provide(providers);
|
|
stability::provide(providers);
|
|
upvars::provide(providers);
|
|
}
|