rustc_sanitizers/cfi/mod.rs
1//! LLVM Control Flow Integrity (CFI) and cross-language LLVM CFI support for the Rust compiler.
2//!
3//! For more information about LLVM CFI and cross-language LLVM CFI support for the Rust compiler,
4//! see design document in the tracking issue #89653.
5pub mod typeid;
6pub use crate::cfi::typeid::{TypeIdOptions, typeid_for_fnabi, typeid_for_instance};