[lld] r269102 - Add a link to the format description.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue May 10 12:26:55 PDT 2016


Author: rafael
Date: Tue May 10 14:26:55 2016
New Revision: 269102

URL: http://llvm.org/viewvc/llvm-project?rev=269102&view=rev
Log:
Add a link to the format description.

Modified:
    lld/trunk/ELF/DriverUtils.cpp

Modified: lld/trunk/ELF/DriverUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/DriverUtils.cpp?rev=269102&r1=269101&r2=269102&view=diff
==============================================================================
--- lld/trunk/ELF/DriverUtils.cpp (original)
+++ lld/trunk/ELF/DriverUtils.cpp Tue May 10 14:26:55 2016
@@ -150,6 +150,8 @@ static void maybePrintCpioMember(StringR
 
   // Print the trailer and seek back. This way we have a valid archive if we
   // crash.
+  // See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_11
+  // for the format details.
   uint64_t Pos = OS.tell();
   maybePrintCpioMemberAux(OS, "TRAILER!!!", "");
   OS.seek(Pos);




More information about the llvm-commits mailing list