Home | History | Annotate | Download | only in Checkers

Lines Matching defs:unreachable

31           "The # of unreachable blocks in analyzing top level functions");
71 unsigned total = 0, unreachable = 0;
77 // Check if the block is unreachable
79 ++unreachable;
83 // We never 'reach' the entry block, so correct the unreachable count
84 unreachable--;
87 unreachable--;
104 NumBlocksUnreachable += unreachable;
108 output << " -> Total CFGBlocks: " << total << " | Unreachable CFGBlocks: "
109 << unreachable << " | Exhausted Block: "