From: Ivan Krasin Date: Wed, 5 Apr 2017 20:07:43 +0000 (+0000) Subject: Remove accidental debug printf. Follow up to r299583. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4640b8eb908f1ae96dc9a302c55e6455aef3dd58;p=llvm Remove accidental debug printf. Follow up to r299583. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299584 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index a6acb585537..aaa79ae70f0 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -359,7 +359,6 @@ Expected ELFFile::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(alignof(Elf_Shdr))); // Invalid address alignment of section headers if (SectionTableOffset & (alignof(Elf_Shdr) - 1)) return createError("invalid alignment of section headers");