diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-10 20:24:04 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-10 20:24:04 +0000 |
commit | b5155a572fd972d249ea365226c10a5d8e5f921d (patch) | |
tree | 6624d2d20449860aaf72df9fce146a7f18e4806b /llvm/tools/llvm-readobj/MachODumper.cpp | |
parent | 0cdcd961bf0cc747a1d93617d24bbcabacb818b0 (diff) | |
download | bcm5719-llvm-b5155a572fd972d249ea365226c10a5d8e5f921d.tar.gz bcm5719-llvm-b5155a572fd972d249ea365226c10a5d8e5f921d.zip |
Change the begin and end methods in ObjectFile to match the style guide.
llvm-svn: 201108
Diffstat (limited to 'llvm/tools/llvm-readobj/MachODumper.cpp')
-rw-r--r-- | llvm/tools/llvm-readobj/MachODumper.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/llvm/tools/llvm-readobj/MachODumper.cpp b/llvm/tools/llvm-readobj/MachODumper.cpp index af76901a3f1..ef699b30bf7 100644 --- a/llvm/tools/llvm-readobj/MachODumper.cpp +++ b/llvm/tools/llvm-readobj/MachODumper.cpp @@ -222,8 +222,8 @@ void MachODumper::printSections(const MachOObjectFile *Obj) { ListScope Group(W, "Sections"); int SectionIndex = -1; - for (section_iterator SecI = Obj->begin_sections(), - SecE = Obj->end_sections(); + for (section_iterator SecI = Obj->section_begin(), + SecE = Obj->section_end(); SecI != SecE; ++SecI) { ++SectionIndex; @@ -258,16 +258,16 @@ void MachODumper::printSections(const MachOObjectFile *Obj) { if (opts::SectionRelocations) { ListScope D(W, "Relocations"); - for (relocation_iterator RelI = SecI->begin_relocations(), - RelE = SecI->end_relocations(); + for (relocation_iterator RelI = SecI->relocation_begin(), + RelE = SecI->relocation_end(); RelI != RelE; ++RelI) printRelocation(SecI, RelI); } if (opts::SectionSymbols) { ListScope D(W, "Symbols"); - for (symbol_iterator SymI = Obj->begin_symbols(), - SymE = Obj->end_symbols(); + for (symbol_iterator SymI = Obj->symbol_begin(), + SymE = Obj->symbol_end(); SymI != SymE; ++SymI) { bool Contained = false; if (SecI->containsSymbol(*SymI, Contained) || !Contained) @@ -290,16 +290,16 @@ void MachODumper::printRelocations() { ListScope D(W, "Relocations"); error_code EC; - for (section_iterator SecI = Obj->begin_sections(), - SecE = Obj->end_sections(); + for (section_iterator SecI = Obj->section_begin(), + SecE = Obj->section_end(); SecI != SecE; ++SecI) { StringRef Name; if (error(SecI->getName(Name))) continue; bool PrintedGroup = false; - for (relocation_iterator RelI = SecI->begin_relocations(), - RelE = SecI->end_relocations(); + for (relocation_iterator RelI = SecI->relocation_begin(), + RelE = SecI->relocation_end(); RelI != RelE; ++RelI) { if (!PrintedGroup) { W.startLine() << "Section " << Name << " {\n"; @@ -331,7 +331,7 @@ void MachODumper::printRelocation(const MachOObjectFile *Obj, if (error(RelI->getOffset(Offset))) return; if (error(RelI->getTypeName(RelocName))) return; symbol_iterator Symbol = RelI->getSymbol(); - if (Symbol != Obj->end_symbols() && + if (Symbol != Obj->symbol_end() && error(Symbol->getName(SymbolName))) return; @@ -370,7 +370,7 @@ void MachODumper::printRelocation(const MachOObjectFile *Obj, void MachODumper::printSymbols() { ListScope Group(W, "Symbols"); - for (symbol_iterator SymI = Obj->begin_symbols(), SymE = Obj->end_symbols(); + for (symbol_iterator SymI = Obj->symbol_begin(), SymE = Obj->symbol_end(); SymI != SymE; ++SymI) { printSymbol(SymI); } @@ -389,9 +389,9 @@ void MachODumper::printSymbol(symbol_iterator SymI) { getSymbol(Obj, SymI->getRawDataRefImpl(), Symbol); StringRef SectionName = ""; - section_iterator SecI(Obj->end_sections()); + section_iterator SecI(Obj->section_begin()); if (!error(SymI->getSection(SecI)) && - SecI != Obj->end_sections()) + SecI != Obj->section_end()) error(SecI->getName(SectionName)); DictScope D(W, "Symbol"); |