We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment the first symbol that is matched is returned, but this can cause problems because of situations like this:
[address: 0x2CA6C0] [size: 310 bytes] cargo_asm::main::he7e4b90525b343c2 [address: 0x493590] [size: 247 bytes] core::num::dec2flt::algorithm::round_by_remainder::hf61317af6f74374c [address: 0x2CC800] [size: 47 bytes] main
Here using cargo asm disasm main would return cargo_asm::main::he7e4b90525b343c2 despite main being a better match.
cargo asm disasm main
cargo_asm::main::he7e4b90525b343c2
main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment the first symbol that is matched is returned, but this can cause problems because of situations like this:
Here using
cargo asm disasm main
would returncargo_asm::main::he7e4b90525b343c2
despitemain
being a better match.The text was updated successfully, but these errors were encountered: