[lld] r205402 - Remove unused variables.

Rui Ueyama ruiu at google.com
Tue Apr 1 23:43:09 PDT 2014


Author: ruiu
Date: Wed Apr  2 01:43:08 2014
New Revision: 205402

URL: http://llvm.org/viewvc/llvm-project?rev=205402&view=rev
Log:
Remove unused variables.

Modified:
    lld/trunk/include/lld/Core/Resolver.h

Modified: lld/trunk/include/lld/Core/Resolver.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/Core/Resolver.h?rev=205402&r1=205401&r2=205402&view=diff
==============================================================================
--- lld/trunk/include/lld/Core/Resolver.h (original)
+++ lld/trunk/include/lld/Core/Resolver.h Wed Apr  2 01:43:08 2014
@@ -37,8 +37,7 @@ public:
   };
 
   Resolver(LinkingContext &context)
-      : _context(context), _symbolTable(context), _result(new MergedFile()),
-        _addToFinalSection(false) {}
+      : _context(context), _symbolTable(context), _result(new MergedFile()) {}
 
   // InputFiles::Handler methods
   void doDefinedAtom(const DefinedAtom&);
@@ -114,10 +113,8 @@ private:
   SymbolTable _symbolTable;
   std::vector<const Atom *>     _atoms;
   std::set<const Atom *>        _deadStripRoots;
-  std::vector<const Atom *>     _atomsWithUnresolvedReferences;
   llvm::DenseSet<const Atom *>  _liveAtoms;
-  std::unique_ptr<MergedFile> _result;
-  bool _addToFinalSection;
+  std::unique_ptr<MergedFile>   _result;
 };
 
 } // namespace lld





More information about the llvm-commits mailing list