[SCCIterator] Garbage collect dead code. NFC.

llvm-svn: 304845
This commit is contained in:
Davide Italiano 2017-06-06 23:41:12 +00:00
parent 318d1195f2
commit 492c29f03d
1 changed files with 0 additions and 10 deletions

View File

@ -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