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/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h | |
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/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h | 8 |
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(); } |