forked from OSchip/llvm-project
[SCCIterator] Garbage collect dead code. NFC.
llvm-svn: 304845
This commit is contained in:
parent
318d1195f2
commit
492c29f03d
|
@ -232,16 +232,6 @@ template <class T> scc_iterator<T> scc_end(const T &G) {
|
|||
return scc_iterator<T>::end(G);
|
||||
}
|
||||
|
||||
/// \brief Construct the begin iterator for a deduced graph type T's Inverse<T>.
|
||||
template <class T> scc_iterator<Inverse<T>> scc_begin(const Inverse<T> &G) {
|
||||
return scc_iterator<Inverse<T>>::begin(G);
|
||||
}
|
||||
|
||||
/// \brief Construct the end iterator for a deduced graph type T's Inverse<T>.
|
||||
template <class T> scc_iterator<Inverse<T>> scc_end(const Inverse<T> &G) {
|
||||
return scc_iterator<Inverse<T>>::end(G);
|
||||
}
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif // LLVM_ADT_SCCITERATOR_H
|
||||
|
|
Loading…
Reference in New Issue