Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Current

62   // Look to see if the current control flow ends with a 'return', and see if
65 const CFGBlock *Current = B;
67 for (CFGBlock::const_reverse_iterator I = Current->rbegin(),
68 E = Current->rend();
90 if (Current->getTerminator().isTemporaryDtorsBranch()) {
95 assert(Current->succ_size() == 2);
96 Current = *(Current->succ_begin() + 1);
97 } else if (!Current->getTerminator() && Current->succ_size() == 1) {
100 Current = *Current->succ_begin();
101 if (Current->pred_size() > 1) {