From 07d5617ca88fdc20f4acbaf0d302eeca959ff1b8 Mon Sep 17 00:00:00 2001 From: "Michael J. Spencer" Date: Mon, 21 Jan 2013 06:46:11 +0000 Subject: [Object] .bss sections have no content. PR15005. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173007 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Object/ELF.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'include/llvm/Object/ELF.h') diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index 136fdf5e5e..5409fc3ae5 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -1260,16 +1260,18 @@ template error_code ELFObjectFile::getSectionContents(DataRefImpl Sec, StringRef &Result) const { const Elf_Shdr *sec = reinterpret_cast(Sec.p); - const char *start = (const char*)base() + sec->sh_offset; - Result = StringRef(start, sec->sh_size); - return object_error::success; + return getSectionContents(sec, Result); } template error_code ELFObjectFile::getSectionContents(const Elf_Shdr *Sec, StringRef &Result) const { - const char *start = (const char*)base() + Sec->sh_offset; - Result = StringRef(start, Sec->sh_size); + if (Sec->sh_type == ELF::SHT_NOBITS) + Result = StringRef(); + else { + const char *start = (const char*)base() + Sec->sh_offset; + Result = StringRef(start, Sec->sh_size); + } return object_error::success; } -- cgit v1.2.3-18-g5258