mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
llvm-readobj, COFF: Remove an unused variable
printRelocation doesn't use the section contents. No functionality change intended. llvm-svn: 221871
This commit is contained in:
parent
854aeb4e3e
commit
0c18289151
@ -792,7 +792,6 @@ void COFFDumper::printRelocation(const SectionRef &Section,
|
||||
uint64_t RelocType;
|
||||
SmallString<32> RelocName;
|
||||
StringRef SymbolName;
|
||||
StringRef Contents;
|
||||
if (error(Reloc.getOffset(Offset)))
|
||||
return;
|
||||
if (error(Reloc.getType(RelocType)))
|
||||
@ -802,8 +801,6 @@ void COFFDumper::printRelocation(const SectionRef &Section,
|
||||
symbol_iterator Symbol = Reloc.getSymbol();
|
||||
if (Symbol != Obj->symbol_end() && error(Symbol->getName(SymbolName)))
|
||||
return;
|
||||
if (error(Section.getContents(Contents)))
|
||||
return;
|
||||
|
||||
if (opts::ExpandRelocs) {
|
||||
DictScope Group(W, "Relocation");
|
||||
|
Loading…
Reference in New Issue
Block a user