Skip to main content

rustc_sanitizers/
lib.rs

1//! Sanitizers support for the Rust compiler.
2//!
3//! This crate contains the source code for providing support for the sanitizers to the Rust
4//! compiler.
5
6#![feature(extern_types)]
7
8// tidy-alphabetical-start
9// tidy-alphabetical-end
10
11pub mod cfi;
12pub mod ignorelist;
13pub mod kcfi;