mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 16:26:10 +00:00
13 lines
190 B
Rust
13 lines
190 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
|
|
}
|