Re: identify unused functions?

2008-04-04 Thread Bernd Jendrissek
On Tue, Apr 1, 2008 at 12:06 AM, Brian J. Tarricone [EMAIL PROTECTED] wrote: G Hasse wrote: There is NO way to clerify all unused functions in a program. You could call functions by their addresses and those addresses could be calculated in runtime. So you don't know... This is

Re: identify unused functions?

2008-03-31 Thread Brian J. Tarricone
G Hasse wrote: On Sun, Mar 30, 2008 at 10:25:05PM +0300, Stefan Kost wrote: Hi, Undefined and unused is not the same. There is NO way to clerify all unused functions in a program. You could call functions by their addresses and those addresses could be calculated in runtime. So you don't

Re: identify unused functions?

2008-03-30 Thread G Hasse
| cut -c12- | sort | uniq would give you a list of all defined symbols now all enties in 2nd list, which are not in first list should be what you are looking for ('comm' should be able to do that). Stefan Dr. Michael J. Chudobiak schrieb: Is there any easy way to identify unused