mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
13 lines
188 B
Rust
13 lines
188 B
Rust
![]() |
#![crate_type="staticlib"]
|
||
|
|
||
|
#[no_mangle]
|
||
|
pub extern "C" fn rust_always_inlined() -> u32 {
|
||
|
42
|
||
|
}
|
||
|
|
||
|
#[no_mangle]
|
||
|
#[inline(never)]
|
||
|
pub extern "C" fn rust_never_inlined() -> u32 {
|
||
|
421
|
||
|
}
|