[lld] r316741 - Fix typo.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 26 21:59:33 PDT 2017


Author: ruiu
Date: Thu Oct 26 21:59:33 2017
New Revision: 316741

URL: http://llvm.org/viewvc/llvm-project?rev=316741&view=rev
Log:
Fix typo.

Modified:
    lld/trunk/ELF/Writer.cpp

Modified: lld/trunk/ELF/Writer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Writer.cpp?rev=316741&r1=316740&r2=316741&view=diff
==============================================================================
--- lld/trunk/ELF/Writer.cpp (original)
+++ lld/trunk/ELF/Writer.cpp Thu Oct 26 21:59:33 2017
@@ -1856,7 +1856,7 @@ template <class ELFT> void Writer<ELFT>:
                Buf + alignTo(P->p_offset + P->p_filesz, Target->PageSize));
 
   // Round up the file size of the last segment to the page boundary iff it is
-  // an executable segment to ensure that other other tools don't accidentally
+  // an executable segment to ensure that other tools don't accidentally
   // trim the instruction padding (e.g. when stripping the file).
   PhdrEntry *LastRX = nullptr;
   for (PhdrEntry *P : Phdrs) {




More information about the llvm-commits mailing list