[lld] r339100 - [COFF] Fix a comment about automatic resolving of dllimports from within a module. NFC.
    Martin Storsjo via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Aug  6 23:42:53 PDT 2018
    
    
  
Author: mstorsjo
Date: Mon Aug  6 23:42:53 2018
New Revision: 339100
URL: http://llvm.org/viewvc/llvm-project?rev=339100&view=rev
Log:
[COFF] Fix a comment about automatic resolving of dllimports from within a module. NFC.
Differential Revision: https://reviews.llvm.org/D50357
Modified:
    lld/trunk/COFF/Symbols.h
Modified: lld/trunk/COFF/Symbols.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/COFF/Symbols.h?rev=339100&r1=339099&r2=339100&view=diff
==============================================================================
--- lld/trunk/COFF/Symbols.h (original)
+++ lld/trunk/COFF/Symbols.h Mon Aug  6 23:42:53 2018
@@ -331,8 +331,8 @@ private:
   Chunk *Data;
 };
 
-// If you have a symbol "__imp_foo" in your object file, a symbol name
-// "foo" becomes automatically available as a pointer to "__imp_foo".
+// If you have a symbol "foo" in your object file, a symbol name
+// "__imp_foo" becomes automatically available as a pointer to "foo".
 // This class is for such automatically-created symbols.
 // Yes, this is an odd feature. We didn't intend to implement that.
 // This is here just for compatibility with MSVC.
    
    
More information about the llvm-commits
mailing list