rust/compiler/rustc_sanitizers/src/lib.rs
Nicholas Nethercote 1830245a22 Remove recursion_limit increases.
These are no longer needed now that `Nonterminal` is gone.
2025-04-02 16:25:27 +11:00

12 lines
262 B
Rust

//! Sanitizers support for the Rust compiler.
//!
//! This crate contains the source code for providing support for the sanitizers to the Rust
//! compiler.
// tidy-alphabetical-start
#![feature(let_chains)]
// tidy-alphabetical-end
pub mod cfi;
pub mod kcfi;