Extend ControlFlowGraphBuilder to add more logic
Opened this issue · 0 comments
Mathiasdm commented
A more advanced ControlFlowGraphBuilder could detect more dead code.
Example:
int i = 5;
if(i < 3) {
//doSomething <-- this is dead code
}
Opened this issue · 0 comments
A more advanced ControlFlowGraphBuilder could detect more dead code.
Example:
int i = 5;
if(i < 3) {
//doSomething <-- this is dead code
}