Sometimes two symbols have the same name. This is usually because the symbol is a result of a monomorphization. This can either be fixed by using extra debugging information to get the exact name of the function and using that instead (would introduce an extra -g flag), or by allowing disassembling by address. I should probably do both.
Sometimes two symbols have the same name. This is usually because the symbol is a result of a monomorphization. This can either be fixed by using extra debugging information to get the exact name of the function and using that instead (would introduce an extra
-gflag), or by allowing disassembling by address. I should probably do both.