From 94ad5a120fe320171f1630d1878ec1ae8b7eafa1 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 21 Jan 2014 16:09:45 +0000 Subject: Rename these methods to match the style guide. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199751 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-objdump/llvm-objdump.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/llvm-objdump') diff --git a/tools/llvm-objdump/llvm-objdump.cpp b/tools/llvm-objdump/llvm-objdump.cpp index ba21ab125f..69df744c2b 100644 --- a/tools/llvm-objdump/llvm-objdump.cpp +++ b/tools/llvm-objdump/llvm-objdump.cpp @@ -801,8 +801,8 @@ static void DumpObject(const ObjectFile *o) { /// @brief Dump each object file in \a a; static void DumpArchive(const Archive *a) { - for (Archive::child_iterator i = a->begin_children(), - e = a->end_children(); i != e; ++i) { + for (Archive::child_iterator i = a->child_begin(), + e = a->child_end(); i != e; ++i) { OwningPtr child; if (error_code ec = i->getAsBinary(child)) { // Ignore non-object files. -- cgit v1.2.3