[ELF] - Update after LLVM change (r285886)

llvm-svn: 285888
This commit is contained in:
George Rimar 2016-11-03 08:42:52 +00:00
parent 02334f6cdc
commit 4d2aad9da6
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}