summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Krasin <krasin@chromium.org>2017-04-05 20:07:43 +0000
committerIvan Krasin <krasin@chromium.org>2017-04-05 20:07:43 +0000
commit13acc0d521b742c843acd0097e95a47f15da819a (patch)
treebc5eb4bf6e74a9632acf981efe8b4d077daa1669
parentd4f70c70b94c75e0ac81d32efac33777eb512834 (diff)
downloadbcm5719-llvm-13acc0d521b742c843acd0097e95a47f15da819a.tar.gz
bcm5719-llvm-13acc0d521b742c843acd0097e95a47f15da819a.zip
Remove accidental debug printf. Follow up to r299583.
llvm-svn: 299584
-rw-r--r--llvm/include/llvm/Object/ELF.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/Object/ELF.h b/llvm/include/llvm/Object/ELF.h
index a6acb585537..aaa79ae70f0 100644
--- a/llvm/include/llvm/Object/ELF.h
+++ b/llvm/include/llvm/Object/ELF.h
@@ -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");
OpenPOWER on IntegriCloud