Fixed mistype in comment. NFC.

llvm-svn: 255646
This commit is contained in:
George Rimar 2015-12-15 14:20:57 +00:00
parent 229158c491
commit 5be170ed8b
1 changed files with 1 additions and 1 deletions

View File

@ -1023,7 +1023,7 @@ template <class ELFT> void EHOutputSection<ELFT>::writeTo(uint8_t *Buf) {
for (const EHRegion<ELFT> &F : C.Fdes) {
StringRef FdeData = F.data();
memcpy(Buf + Offset, FdeData.data(), 4); // Legnth
memcpy(Buf + Offset, FdeData.data(), 4); // Length
write32<E>(Buf + Offset + 4, Offset + 4 - CieOffset); // Pointer
memcpy(Buf + Offset + 8, FdeData.data() + 8, FdeData.size() - 8);
F.S->Offsets[F.Index].second = Offset;