[lld] r315626 - [lld] Fix typo. NFC

Shoaib Meenai via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 12 14:52:14 PDT 2017


Author: smeenai
Date: Thu Oct 12 14:52:14 2017
New Revision: 315626

URL: http://llvm.org/viewvc/llvm-project?rev=315626&view=rev
Log:
[lld] Fix typo. NFC

Modified:
    lld/trunk/ELF/Symbols.h

Modified: lld/trunk/ELF/Symbols.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Symbols.h?rev=315626&r1=315625&r2=315626&view=diff
==============================================================================
--- lld/trunk/ELF/Symbols.h (original)
+++ lld/trunk/ELF/Symbols.h Thu Oct 12 14:52:14 2017
@@ -229,7 +229,7 @@ public:
     //
     // For DSO symbols, we always call them through PLT slots anyway.
     // So there's no difference between GNU ifunc and regular function
-    // symbols if they are in DSOs. So we can handle GNU_IFUCN as FUNC.
+    // symbols if they are in DSOs. So we can handle GNU_IFUNC as FUNC.
     if (this->Type == llvm::ELF::STT_GNU_IFUNC)
       this->Type = llvm::ELF::STT_FUNC;
   }




More information about the llvm-commits mailing list