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
411 B
Rust
12 lines
411 B
Rust
// Verifies that when compiling with `-Zsanitizer-cfi-generalize-pointers` the
|
|
// `#[cfg(sanitizer_cfi_generalize_pointers)]` attribute is configured.
|
|
//
|
|
//@ needs-sanitizer-cfi
|
|
//@ check-pass
|
|
//@ compile-flags: -Clto -Cno-prepopulate-passes -Ctarget-feature=-crt-static -Zsanitizer=cfi -Zsanitizer-cfi-generalize-pointers
|
|
|
|
#![feature(cfg_sanitizer_cfi)]
|
|
|
|
#[cfg(sanitizer_cfi_generalize_pointers)]
|
|
fn main() {}
|