summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-10 20:24:04 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-10 20:24:04 +0000
commitb5155a572fd972d249ea365226c10a5d8e5f921d (patch)
tree6624d2d20449860aaf72df9fce146a7f18e4806b /llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
parent0cdcd961bf0cc747a1d93617d24bbcabacb818b0 (diff)
downloadbcm5719-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/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h')
-rw-r--r--llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h b/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
index 2056f39b5ac..f647b87f591 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
+++ b/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
@@ -52,14 +52,14 @@ public:
virtual ~ObjectImageCommon() { delete ObjFile; }
virtual object::symbol_iterator begin_symbols() const
- { return ObjFile->begin_symbols(); }
+ { return ObjFile->symbol_begin(); }
virtual object::symbol_iterator end_symbols() const
- { return ObjFile->end_symbols(); }
+ { return ObjFile->symbol_end(); }
virtual object::section_iterator begin_sections() const
- { return ObjFile->begin_sections(); }
+ { return ObjFile->section_begin(); }
virtual object::section_iterator end_sections() const
- { return ObjFile->end_sections(); }
+ { return ObjFile->section_end(); }
virtual /* Triple::ArchType */ unsigned getArch() const
{ return ObjFile->getArch(); }
OpenPOWER on IntegriCloud