Searched refs:PointerIntTy (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DDepthFirstIterator.h73 typedef PointerIntPair<NodeType*, 1> PointerIntTy; typedef in class:llvm::df_iterator
77 // if the int in PointerIntTy is 0, the 'next child' to visit is invalid
78 std::vector<std::pair<PointerIntTy, ChildItTy> > VisitStack;
82 VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
91 VisitStack.push_back(std::make_pair(PointerIntTy(Node, 0),
103 std::pair<PointerIntTy, ChildItTy> &Top = VisitStack.back();
118 VisitStack.push_back(std::make_pair(PointerIntTy(Next, 0),

Completed in 114 milliseconds