mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 23:37:33 +00:00
Use range loop. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242801 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7eeb71ddc3
commit
51ac821430
@ -123,17 +123,17 @@ ErrorOr<ELFYAML::Object *> ELFDumper<ELFT>::dump() {
|
||||
|
||||
// Dump symbols
|
||||
bool IsFirstSym = true;
|
||||
for (auto SI = Obj.symbol_begin(), SE = Obj.symbol_end(); SI != SE; ++SI) {
|
||||
for (const Elf_Sym &Sym : Obj.symbols()) {
|
||||
if (IsFirstSym) {
|
||||
IsFirstSym = false;
|
||||
continue;
|
||||
}
|
||||
|
||||
ELFYAML::Symbol S;
|
||||
if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(SI, false, S))
|
||||
if (std::error_code EC = ELFDumper<ELFT>::dumpSymbol(&Sym, false, S))
|
||||
return EC;
|
||||
|
||||
switch (SI->getBinding())
|
||||
switch (Sym.getBinding())
|
||||
{
|
||||
case ELF::STB_LOCAL:
|
||||
Y->Symbols.Local.push_back(S);
|
||||
|
Loading…
x
Reference in New Issue
Block a user