mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 11:37:39 +00:00

Adds `#[rustc_force_inline]` which is similar to always inlining but reports an error if the inlining was not possible, and which always attempts to inline annotated items, regardless of optimisation levels. It can only be applied to free functions to guarantee that the MIR inliner will be able to resolve calls.
14 lines
242 B
Rust
14 lines
242 B
Rust
//@ aux-build:callees.rs
|
|
//@ build-pass
|
|
//@ compile-flags: --crate-type=lib
|
|
|
|
extern crate callees;
|
|
|
|
// Test that forced inlining across crates works as expected.
|
|
|
|
pub fn caller() {
|
|
callees::forced();
|
|
|
|
callees::forced_with_reason();
|
|
}
|