Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
assembly
/
auxiliary
/
non-inline-dependency.rs
blob: 57f3ee87cdb9d7bad8e324ca310503ee023c8dbd [
file
] [
log
] [
blame
] [
edit
]
#![
no_std
]
#![
deny
(
warnings
)]
#[
inline
(
never
)]
#[
no_mangle
]
pub
fn
wrapping_external_fn
(
a
:
u32
)
->
u32
{
a
.
wrapping_mul
(
a
)
}
#[
inline
(
never
)]
#[
no_mangle
]
pub
fn
panicking_external_fn
(
a
:
u32
)
->
u32
{
a
*
a
}