r246020 - Remove a TODO that isn't going to get fixed in this way.

Eric Christopher via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 26 00:01:31 PDT 2015


Author: echristo
Date: Wed Aug 26 02:01:30 2015
New Revision: 246020

URL: http://llvm.org/viewvc/llvm-project?rev=246020&view=rev
Log:
Remove a TODO that isn't going to get fixed in this way.

Modified:
    cfe/trunk/lib/Basic/Targets.cpp

Modified: cfe/trunk/lib/Basic/Targets.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/Targets.cpp?rev=246020&r1=246019&r2=246020&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/Targets.cpp (original)
+++ cfe/trunk/lib/Basic/Targets.cpp Wed Aug 26 02:01:30 2015
@@ -7579,9 +7579,6 @@ TargetInfo::CreateTargetInfo(Diagnostics
       return nullptr;
 
   // Add the features to the compile options.
-  //
-  // FIXME: If we are completely confident that we have the right set, we only
-  // need to pass the minuses.
   Opts->Features.clear();
   for (const auto &F : Features)
     Opts->Features.push_back((F.getValue() ? "+" : "-") + F.getKey().str());




More information about the cfe-commits mailing list