-
Is it possible to assign multiple names to a single function object (at the same address). The usecase is where I have a compiled code, and I know that multiple functions (due to compilation) are compiled to the same function address, but occasionally, I would still want to be able to search either name in a function panel and still recover the function. |
Beta Was this translation helpful? Give feedback.
Answered by
psifertex
Jan 3, 2024
Replies: 1 comment 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
psifertex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I is possible to create multiple symbols using the API, however right now the UI will only show one FunctionSymbol (the most recent one) so you won't be able to search for all of them.
That said, there is a small hack which is that you can create DataVariable symbols at the same location as the function and show data symbols and you'll be able to see all of them in the UI at the same time. Consider this for example: