[lld] r210110 - Remove dead code.
Rafael Espindola
rafael.espindola at gmail.com
Tue Jun 3 08:36:31 PDT 2014
Author: rafael
Date: Tue Jun 3 10:36:31 2014
New Revision: 210110
URL: http://llvm.org/viewvc/llvm-project?rev=210110&view=rev
Log:
Remove dead code.
New code should probably use shared_ptr anyway.
Modified:
lld/trunk/include/lld/Core/LLVM.h
Modified: lld/trunk/include/lld/Core/LLVM.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/Core/LLVM.h?rev=210110&r1=210109&r2=210110&view=diff
==============================================================================
--- lld/trunk/include/lld/Core/LLVM.h (original)
+++ lld/trunk/include/lld/Core/LLVM.h Tue Jun 3 10:36:31 2014
@@ -38,12 +38,6 @@ namespace llvm {
template<typename T>
class ErrorOr;
- // Reference counting.
- template <typename T> class IntrusiveRefCntPtr;
- template <typename T> struct IntrusiveRefCntPtrInfo;
- template <class Derived> class RefCountedBase;
- class RefCountedBaseVPTR;
-
class error_code;
class raw_ostream;
// TODO: DenseMap, ...
@@ -68,12 +62,6 @@ namespace lld {
using llvm::SaveAndRestore;
using llvm::ErrorOr;
- // Reference counting.
- using llvm::IntrusiveRefCntPtr;
- using llvm::IntrusiveRefCntPtrInfo;
- using llvm::RefCountedBase;
- using llvm::RefCountedBaseVPTR;
-
using llvm::error_code;
using llvm::raw_ostream;
} // end namespace lld.
More information about the llvm-commits
mailing list