Home | History | Annotate | Download | only in Checkers

Lines Matching refs:unreachable

32           "The # of unreachable blocks in analyzing top level functions");
72 unsigned total = 0, unreachable = 0;
78 // Check if the block is unreachable
80 ++unreachable;
84 // We never 'reach' the entry block, so correct the unreachable count
85 unreachable--;
88 unreachable--;
105 NumBlocksUnreachable += unreachable;
109 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
110 << unreachable << " | Exhausted Block: "