summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Rimar <grimar@accesssoftek.com>2016-11-03 08:42:52 +0000
committerGeorge Rimar <grimar@accesssoftek.com>2016-11-03 08:42:52 +0000
commit4d2aad9da6b99c0a62eac8e2c4a933a51192dda0 (patch)
tree03460d055b1e2241325bf272e21449c20b5039c6
parent02334f6cdc21eabd602a41dd08f6b63bd3148848 (diff)
downloadbcm5719-llvm-4d2aad9da6b99c0a62eac8e2c4a933a51192dda0.tar.gz
bcm5719-llvm-4d2aad9da6b99c0a62eac8e2c4a933a51192dda0.zip
[ELF] - Update after LLVM change (r285886)
llvm-svn: 285888
-rw-r--r--lld/ELF/InputFiles.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp
index bce506eb8ef..4d2618666ee 100644
--- a/lld/ELF/InputFiles.cpp
+++ b/lld/ELF/InputFiles.cpp
@@ -208,7 +208,7 @@ elf::ObjectFile<ELFT>::getShtGroupSignature(ArrayRef<Elf_Shdr> Sections,
const ELFFile<ELFT> &Obj = this->ELFObj;
const Elf_Shdr *Symtab =
check(object::getSection<ELFT>(Sections, Sec.sh_link));
- const Elf_Sym *Sym = Obj.getSymbol(Symtab, Sec.sh_info);
+ const Elf_Sym *Sym = check(Obj.getSymbol(Symtab, Sec.sh_info));
StringRef Strtab = check(Obj.getStringTableForSymtab(*Symtab));
return check(Sym->getName(Strtab));
}
OpenPOWER on IntegriCloud