diff options
Diffstat (limited to 'llvm/tools/llvm-objcopy/Object.cpp')
-rw-r--r-- | llvm/tools/llvm-objcopy/Object.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objcopy/Object.cpp b/llvm/tools/llvm-objcopy/Object.cpp index ef780d3ddb0..fd3add98418 100644 --- a/llvm/tools/llvm-objcopy/Object.cpp +++ b/llvm/tools/llvm-objcopy/Object.cpp @@ -463,7 +463,7 @@ template <class ELFT> void Object<ELFT>::writeSectionHeaders(FileOutputBuffer &Out) const { uint8_t *Buf = Out.getBufferStart() + SHOffset; // This reference serves to write the dummy section header at the begining - // of the file. + // of the file. It is not used for anything else Elf_Shdr &Shdr = *reinterpret_cast<Elf_Shdr *>(Buf); Shdr.sh_name = 0; Shdr.sh_type = SHT_NULL; |