I need to search and eliminate recursive function calls in an inherited code base.
Thus far I was unable to find any tool that will do a static analysis and find these functions.
I need to search and eliminate recursive function calls in an inherited code base.
Share
You might want to try cflow:
It should print a callgraph and mark the recursive functions.