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
I'm running a program for ARM target which calls function A, which calls B, and B calls B1 and B2. Each of those call B_end:
A
B
B1
B2
B_end
A──►B┌─► B.1 ─► B_end │ └─► B.2 ─► B_end
none of the fns are inline, when running cargo +nightly call-stack --bin <name>, I'm only getting:
cargo +nightly call-stack --bin <name>
name::B.2 name::B_end
where are the rest? are they inlined? I'm even seeing calls to other crates that they make but nothing else from my own crate.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running a program for ARM target which calls function
A
, which callsB
, andB
callsB1
andB2
. Each of those callB_end
:none of the fns are inline, when running
cargo +nightly call-stack --bin <name>
, I'm only getting:where are the rest? are they inlined? I'm even seeing calls to other crates that they make but nothing else from my own crate.
The text was updated successfully, but these errors were encountered: