diff options
| author | Rui Ueyama <ruiu@google.com> | 2016-03-30 00:43:49 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2016-03-30 00:43:49 +0000 |
| commit | f43d15009c50522fac917b669bf367fb592cc6cd (patch) | |
| tree | 970a9570fc036f173c57447b53f2af48aac6bf8c | |
| parent | b94480376a90d17ae96c43e9158faec285d4e4b6 (diff) | |
| download | bcm5719-llvm-f43d15009c50522fac917b669bf367fb592cc6cd.tar.gz bcm5719-llvm-f43d15009c50522fac917b669bf367fb592cc6cd.zip | |
Fix comments.
The original comments were separated by new code that is irrelevant to
the comment. This patch moves the comment to the right place and update it.
llvm-svn: 264816
| -rw-r--r-- | lld/ELF/InputSection.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lld/ELF/InputSection.cpp b/lld/ELF/InputSection.cpp index 8039d787858..d79aad8f865 100644 --- a/lld/ELF/InputSection.cpp +++ b/lld/ELF/InputSection.cpp @@ -307,25 +307,24 @@ void InputSectionBase<ELFT>::relocate(uint8_t *Buf, uint8_t *BufEnd, template <class ELFT> void InputSection<ELFT>::writeTo(uint8_t *Buf) { if (this->Header->sh_type == SHT_NOBITS) return; - // Copy section contents from source object file to output file. - ArrayRef<uint8_t> Data = this->getSectionData(); ELFFile<ELFT> &EObj = this->File->getObj(); - // That happens with -r. In that case we need fix the relocation position and - // target. No relocations are applied. + // If -r is given, then an InputSection may be a relocation section. if (this->Header->sh_type == SHT_RELA) { - this->copyRelocations(Buf + OutSecOff, EObj.relas(this->Header)); + copyRelocations(Buf + OutSecOff, EObj.relas(this->Header)); return; } if (this->Header->sh_type == SHT_REL) { - this->copyRelocations(Buf + OutSecOff, EObj.rels(this->Header)); + copyRelocations(Buf + OutSecOff, EObj.rels(this->Header)); return; } + // Copy section contents from source object file to output file. + ArrayRef<uint8_t> Data = this->getSectionData(); memcpy(Buf + OutSecOff, Data.data(), Data.size()); - uint8_t *BufEnd = Buf + OutSecOff + Data.size(); // Iterate over all relocation sections that apply to this section. + uint8_t *BufEnd = Buf + OutSecOff + Data.size(); for (const Elf_Shdr *RelSec : this->RelocSections) { if (RelSec->sh_type == SHT_RELA) this->relocate(Buf, BufEnd, EObj.relas(RelSec)); |

