Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
tests
/
run-make
/
cross-lang-lto-clang
/
rustlib.rs
blob: 9aff29ef9bb6311ea757858cbced96d18405df09 [
file
] [
log
] [
blame
]
#![
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
}