mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add a GraphTraits partial specialization to make the inverse of an inverse be the same as the underlying graph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c1e2660c5d
commit
9c8a9af5af
@ -78,6 +78,26 @@ struct Inverse {
|
|||||||
inline Inverse(GraphType &G) : Graph(G) {}
|
inline Inverse(GraphType &G) : Graph(G) {}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Provide a partial specialization of GraphTraits so that the inverse of an inverse
|
||||||
|
// falls back to the original graph.
|
||||||
|
template<class T>
|
||||||
|
struct GraphTraits<Inverse<Inverse<T> > > {
|
||||||
|
typedef typename GraphTraits<T>::NodeType NodeType;
|
||||||
|
typedef typename GraphTraits<T>::ChildIteratorType ChildIteratorType;
|
||||||
|
|
||||||
|
static NodeType *getEntryNode(Inverse<Inverse<T> > *G) {
|
||||||
|
return GraphTraits<T>::getEntryNode(G.Graph.Graph);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ChildIteratorType child_begin(NodeType* N) {
|
||||||
|
return GraphTraits<T>::child_begin(N);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ChildIteratorType child_end(NodeType* N) {
|
||||||
|
return GraphTraits<T>::child_end(N);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
} // End llvm namespace
|
} // End llvm namespace
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user