[lld] r250800 - [Driver] Remove a FIXME that didn't make a lot of sense.

Davide Italiano via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 19 22:07:59 PDT 2015


Author: davide
Date: Tue Oct 20 00:07:59 2015
New Revision: 250800

URL: http://llvm.org/viewvc/llvm-project?rev=250800&view=rev
Log:
[Driver] Remove a FIXME that didn't make a lot of sense.

Thanks to Rui for pointing out!

Modified:
    lld/trunk/ELF/Driver.cpp

Modified: lld/trunk/ELF/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Driver.cpp?rev=250800&r1=250799&r2=250800&view=diff
==============================================================================
--- lld/trunk/ELF/Driver.cpp (original)
+++ lld/trunk/ELF/Driver.cpp Tue Oct 20 00:07:59 2015
@@ -158,7 +158,6 @@ void LinkerDriver::createFiles(opt::Inpu
   for (auto *Arg : Args.filtered(OPT_undefined))
     Config->Undefined.push_back(Arg->getValue());
 
-  // FIXME: Group -z options together in Config.
   for (auto *Arg : Args.filtered(OPT_z)) {
     if (Arg->getValue() == StringRef("nodelete"))
       Config->ZNodelete = true;




More information about the llvm-commits mailing list