[PECOFF] Remove unused paraemter.
authorRui Ueyama <ruiu@google.com>
Mon, 4 Aug 2014 22:19:53 +0000 (22:19 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 4 Aug 2014 22:19:53 +0000 (22:19 +0000)
llvm-svn: 214791

lld/lib/ReaderWriter/PECOFF/ReaderCOFF.cpp

index d3857f9..c8243a2 100644 (file)
@@ -957,7 +957,7 @@ public:
     // Interpret .drectve section if the section has contents.
     StringRef directives = file->getLinkerDirectives();
     if (!directives.empty())
-      if (std::error_code ec = handleDirectiveSection(registry, directives))
+      if (std::error_code ec = handleDirectiveSection(directives))
         return ec;
 
     if (std::error_code ec = file->parse())
@@ -991,8 +991,7 @@ private:
   //
   // The section mainly contains /defaultlib (-l in Unix), but can contain any
   // options as long as they are valid.
-  std::error_code handleDirectiveSection(const Registry &registry,
-                                         StringRef directives) const {
+  std::error_code handleDirectiveSection(StringRef directives) const {
     DEBUG(llvm::dbgs() << ".drectve: " << directives << "\n");
 
     // Split the string into tokens, as the shell would do for argv.