Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Checked

6734                                  SmallPtrSet<const SDNode*, 32> &Checked) {
6735 // If this node has already been checked, don't check it again.
6736 if (Checked.count(N))
6749 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked);
6751 Checked.insert(N);
6760 SmallPtrSet<const SDNode*, 32> checked;
6761 checkForCyclesHelper(N, visited, checked);