1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Fixes build break introduced by r258845

llvm-svn: 258854
This commit is contained in:
Hemant Kulkarni 2016-01-26 20:28:15 +00:00
parent 1b41ec85b2
commit 01d2899e13

View File

@ -2273,7 +2273,7 @@ template <class ELFT> void ELFDumper<ELFT>::printGroupSections() {
const Elf_Sym *Sym =
Obj->template getEntry<Elf_Sym>(*Symtab, Sec.sh_info);
auto Data = errorOrDefault(
Obj->template getSectionContentsAsArray<Elf32_Word>(&Sec));
Obj->template getSectionContentsAsArray<Elf_Word>(&Sec));
DictScope D(W, "Group");
StringRef Name = errorOrDefault(Obj->getSectionName(&Sec));
W.printNumber("Name", Name, Sec.sh_name);