From 3dfb196736cd120db3cc1609f83a80f02702cf85 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Tue, 6 Jun 2017 23:41:12 +0000 Subject: [PATCH] [SCCIterator] Garbage collect dead code. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304845 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/SCCIterator.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/llvm/ADT/SCCIterator.h b/include/llvm/ADT/SCCIterator.h index 734a58f87da..784a58dc002 100644 --- a/include/llvm/ADT/SCCIterator.h +++ b/include/llvm/ADT/SCCIterator.h @@ -232,16 +232,6 @@ template scc_iterator scc_end(const T &G) { return scc_iterator::end(G); } -/// \brief Construct the begin iterator for a deduced graph type T's Inverse. -template scc_iterator> scc_begin(const Inverse &G) { - return scc_iterator>::begin(G); -} - -/// \brief Construct the end iterator for a deduced graph type T's Inverse. -template scc_iterator> scc_end(const Inverse &G) { - return scc_iterator>::end(G); -} - } // end namespace llvm #endif // LLVM_ADT_SCCITERATOR_H -- 2.50.1