Home
last modified time | relevance | path

Searched refs:PredClosure (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp77 std::map<change_ty, std::set<change_ty> > PredClosure; member in __anon1494bb440111::DAGDeltaAlgorithmImpl
91 assert(PredClosure.count(Node) && "Invalid node!"); in pred_closure_begin()
92 return PredClosure[Node].begin(); in pred_closure_begin()
95 assert(PredClosure.count(Node) && "Invalid node!"); in pred_closure_end()
96 return PredClosure[Node].end(); in pred_closure_end()
218 PredClosure.insert(std::make_pair(*it, std::set<change_ty>())); in DAGDeltaAlgorithmImpl()
223 PredClosure[*it2].insert(*it); in DAGDeltaAlgorithmImpl()