mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
f837c48f0d
Fix #90546 by filtering out global value function pointer types from the type tests, and adding the LowerTypeTests pass to the rustc LTO optimization pipelines.
9 lines
253 B
Rust
9 lines
253 B
Rust
// Verifies that `-Zsanitizer=cfi` with `-Clto` or `-Clto=thin` requires `-Ccodegen-units=1`.
|
|
//
|
|
// needs-sanitizer-cfi
|
|
// compile-flags: -Ccodegen-units=2 -Clto -Ctarget-feature=-crt-static -Zsanitizer=cfi
|
|
|
|
#![feature(no_core)]
|
|
#![no_core]
|
|
#![no_main]
|