From 13acc0d521b742c843acd0097e95a47f15da819a Mon Sep 17 00:00:00 2001 From: Ivan Krasin Date: Wed, 5 Apr 2017 20:07:43 +0000 Subject: [PATCH] Remove accidental debug printf. Follow up to r299583. llvm-svn: 299584 --- llvm/include/llvm/Object/ELF.h | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/include/llvm/Object/ELF.h b/llvm/include/llvm/Object/ELF.h index a6acb58..aaa79ae 100644 --- a/llvm/include/llvm/Object/ELF.h +++ b/llvm/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"); -- 2.7.4