Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDDG.h26 using DDGNodeBase = DGNode<DDGNode, DDGEdge>; variable
42 class DDGNode : public DDGNodeBase {
55 DDGNode(const NodeKind K) : DDGNodeBase(), Kind(K) {} in DDGNode()
56 DDGNode(const DDGNode &N) : DDGNodeBase(N), Kind(N.Kind) {} in DDGNode()
57 DDGNode(DDGNode &&N) : DDGNodeBase(std::move(N)), Kind(N.Kind) {} in DDGNode()