Tagged Questions
33
votes
6answers
3k views
Dead code identification (C++)
I have a large legacy C++ project compiled under Visual Studio 2008. I know there is a reasonably amount of 'dead' code that is not accessed anywhere -- methods that are not called, whole classes ...
26
votes
8answers
5k views
Dead code detection in legacy C/C++ project
How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some ...
2
votes
3answers
338 views
Static analysis on a C project
I am trying to run static analysis on a C project to identify dead code i.e functions or code lines that are never ever called. I can build this project with Visual Studio .Net for Windows or using ...