about summary refs log tree commit diff
path: root/compiler/rustc_sanitizers/src/kcfi
AgeCommit message (Collapse)AuthorLines
2024-11-02compiler: Add rustc_abi to _sanitizersJubilee Young-1/+1
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-2/+2
2024-07-29Reformat `use` declarations.Nicholas Nethercote-1/+2
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-06-20Add blank lines after module-level `//!` comments.Nicholas Nethercote-0/+1
Most modules have such a blank line, but some don't. Inserting the blank line makes it clearer that the `//!` comments are describing the entire module, rather than the `use` declaration(s) that immediately follows.
2024-06-16Rename InstanceDef -> InstanceKindMichael Goulet-2/+2
2024-04-08sanitizers: Create the rustc_sanitizers crateRamon de C Valle-0/+62
Create the rustc_sanitizers crate and move the source code for the CFI and KCFI sanitizers to it. Co-authored-by: David Wood <agile.lion3441@fuligin.ink>