pacak commented on PR #7420: URL: https://github.com/apache/arrow-rs/pull/7420#issuecomment-2819160136
> For example, `cargo asm -p arrow-select --lib --simplify` shows all the functions, and then I look for `interleave_primitive`. It was function 934 so I did `cargo asm -p arrow-select --lib --simplify 934` If you know the name of the function or even part of it - you can specify all of it or parts as well: `cargo asm -p arrow-select --lib --simplify interleave_pr`, it should print only names that contain this substring - it should be easier to find the name you want since there will be less output. And then you can pass the number along with the name: `cargo asm -p arrow-select --lib --simplify interleave_pr 934` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org