]> granicus.if.org Git - llvm/commitdiff
Remove accidental debug printf. Follow up to r299583.
authorIvan Krasin <krasin@chromium.org>
Wed, 5 Apr 2017 20:07:43 +0000 (20:07 +0000)
committerIvan Krasin <krasin@chromium.org>
Wed, 5 Apr 2017 20:07:43 +0000 (20:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299584 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Object/ELF.h

index a6acb58553782a469ca951eed1bba1dadd63c902..aaa79ae70f01d62a4d47f4f5fe324efb9f99082e 100644 (file)
@@ -359,7 +359,6 @@ Expected<typename ELFT::ShdrRange> ELFFile<ELFT>::sections() const {
   if (SectionTableOffset + sizeof(Elf_Shdr) > FileSize)
     return createError("section header table goes past the end of the file");
 
-  fprintf(stderr, "alignof(Elf_Shdr): %d\n", static_cast<int>(alignof(Elf_Shdr)));
   // Invalid address alignment of section headers
   if (SectionTableOffset & (alignof(Elf_Shdr) - 1))
     return createError("invalid alignment of section headers");