[lld] r315442 - [ELF] - Fix out of sync comment. NFC.
    George Rimar via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Oct 11 01:18:53 PDT 2017
    
    
  
Author: grimar
Date: Wed Oct 11 01:18:53 2017
New Revision: 315442
URL: http://llvm.org/viewvc/llvm-project?rev=315442&view=rev
Log:
[ELF] - Fix out of sync comment. NFC.
Modified:
    lld/trunk/ELF/ScriptLexer.cpp
Modified: lld/trunk/ELF/ScriptLexer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/ScriptLexer.cpp?rev=315442&r1=315441&r2=315442&view=diff
==============================================================================
--- lld/trunk/ELF/ScriptLexer.cpp (original)
+++ lld/trunk/ELF/ScriptLexer.cpp Wed Oct 11 01:18:53 2017
@@ -170,7 +170,7 @@ static std::vector<StringRef> tokenizeEx
   if (S.startswith("\""))
     return {S};
 
-  // Split S with +-*/ as separators.
+  // Split S with operators as separators.
   std::vector<StringRef> Ret;
   while (!S.empty()) {
     size_t E = S.find_first_of(Ops);
    
    
More information about the llvm-commits
mailing list