diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-29 19:03:21 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-04-29 19:03:21 +0000 |
commit | 3700894249f58a33aaeee09203afd4e14bf52ba4 (patch) | |
tree | c53eb4236cc231832508d7750a3c636573737bf2 /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h | |
parent | e02c622baa07c6ec65181e81d0fbf54dde9c4a5a (diff) | |
download | bcm5719-llvm-3700894249f58a33aaeee09203afd4e14bf52ba4.tar.gz bcm5719-llvm-3700894249f58a33aaeee09203afd4e14bf52ba4.zip |
Use a RelocationRef instead of a relocation_iterator.
No functionality change.
llvm-svn: 180723
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h index d0022c196d6..a02b19ca344 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h @@ -282,7 +282,7 @@ protected: /// \brief Parses the object file relocation and stores it to Relocations /// or SymbolRelocations (this depends on the object file type). virtual void processRelocationRef(unsigned SectionID, - relocation_iterator RelI, + RelocationRef RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, |