Currently cargo-show-asm doesn't detect and can't find merged functions (functions with the same implementation).
I think it is expected to be possible to explore such functions without having to parse --everything manually.
Example
Same for both: #[no_mangle] pub fn extern "C" ..., or #[inline(never)] pub fn ....
Checked and reproducible for targets: x86_64-unknown-linux-gnu, i686-unknown-linux-gnu, x86_64-pc-windows-gnu, i686-pc-windows-gnu
Currently
cargo-show-asm
doesn't detect and can't find merged functions (functions with the same implementation).I think it is expected to be possible to explore such functions without having to parse
--everything
manually.Example
Same for both:
#[no_mangle] pub fn extern "C" ...
, or#[inline(never)] pub fn ...
. Checked and reproducible for targets:x86_64-unknown-linux-gnu
,i686-unknown-linux-gnu
,x86_64-pc-windows-gnu
,i686-pc-windows-gnu
Meta