[lld] r316520 - Remove obsolete comment.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 24 14:44:44 PDT 2017
Author: ruiu
Date: Tue Oct 24 14:44:43 2017
New Revision: 316520
URL: http://llvm.org/viewvc/llvm-project?rev=316520&view=rev
Log:
Remove obsolete comment.
Modified:
lld/trunk/ELF/InputSection.h
Modified: lld/trunk/ELF/InputSection.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/InputSection.h?rev=316520&r1=316519&r2=316520&view=diff
==============================================================================
--- lld/trunk/ELF/InputSection.h (original)
+++ lld/trunk/ELF/InputSection.h Tue Oct 24 14:44:43 2017
@@ -212,7 +212,7 @@ private:
// SectionPiece represents a piece of splittable section contents.
// We allocate a lot of these and binary search on them. This means that they
// have to be as compact as possible, which is why we don't store the size (can
-// be found by looking at the next one) and put the hash in a side table.
+// be found by looking at the next one).
struct SectionPiece {
SectionPiece(size_t Off, uint32_t Hash, bool Live)
: InputOff(Off), Hash(Hash), OutputOff(-1),
More information about the llvm-commits
mailing list