Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Checked

6753                                  SmallPtrSet<const SDNode*, 32> &Checked,
6755 // If this node has already been checked, don't check it again.
6756 if (Checked.count(N))
6769 checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked, DAG);
6771 Checked.insert(N);
6787 SmallPtrSet<const SDNode*, 32> checked;
6788 checkForCyclesHelper(N, visited, checked, DAG);