From b5155a572fd972d249ea365226c10a5d8e5f921d Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 10 Feb 2014 20:24:04 +0000 Subject: Change the begin and end methods in ObjectFile to match the style guide. llvm-svn: 201108 --- llvm/tools/llvm-size/llvm-size.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/tools/llvm-size/llvm-size.cpp') diff --git a/llvm/tools/llvm-size/llvm-size.cpp b/llvm/tools/llvm-size/llvm-size.cpp index f46bf6b4a20..c2d24462758 100644 --- a/llvm/tools/llvm-size/llvm-size.cpp +++ b/llvm/tools/llvm-size/llvm-size.cpp @@ -111,7 +111,7 @@ static void PrintObjectSectionSizes(ObjectFile *o) { std::size_t max_name_len = strlen("section"); std::size_t max_size_len = strlen("size"); std::size_t max_addr_len = strlen("addr"); - for (section_iterator i = o->begin_sections(), e = o->end_sections(); + for (section_iterator i = o->section_begin(), e = o->section_end(); i != e; ++i) { uint64_t size = 0; if (error(i->getSize(size))) @@ -150,7 +150,7 @@ static void PrintObjectSectionSizes(ObjectFile *o) { << "%#" << max_addr_len << radix_fmt << "\n"; // Print each section. - for (section_iterator i = o->begin_sections(), e = o->end_sections(); + for (section_iterator i = o->section_begin(), e = o->section_end(); i != e; ++i) { StringRef name; uint64_t size = 0; @@ -181,7 +181,7 @@ static void PrintObjectSectionSizes(ObjectFile *o) { uint64_t total_bss = 0; // Make one pass over the section table to calculate sizes. - for (section_iterator i = o->begin_sections(), e = o->end_sections(); + for (section_iterator i = o->section_begin(), e = o->section_end(); i != e; ++i) { uint64_t size = 0; bool isText = false; -- cgit v1.2.3