about summary refs log tree commit diff
path: root/tests/run-make/cross-lang-lto-clang/rustlib.rs
blob: 9aff29ef9bb6311ea757858cbced96d18405df09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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
}