66c93ac8ba
Moves the CFI ui tests to the cfi directory and removes the cfi prefix from tests file names similarly to how the cfi codegen tests are organized.
12 lines
407 B
Rust
12 lines
407 B
Rust
// Verifies that when compiling with `-Zsanitizer-cfi-normalize-integers` the
|
|
// `#[cfg(sanitizer_cfi_normalize_integers)]` attribute is configured.
|
|
//
|
|
//@ needs-sanitizer-cfi
|
|
//@ check-pass
|
|
//@ compile-flags: -Clto -Cno-prepopulate-passes -Ctarget-feature=-crt-static -Zsanitizer=cfi -Zsanitizer-cfi-normalize-integers
|
|
|
|
#![feature(cfg_sanitizer_cfi)]
|
|
|
|
#[cfg(sanitizer_cfi_normalize_integers)]
|
|
fn main() {}
|