diff options
author | Lang Hames <lhames@gmail.com> | 2016-01-19 21:13:54 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-01-19 21:13:54 +0000 |
commit | bf4e1981e64c36e871310757468f36b3783c8ca1 (patch) | |
tree | 0deafbb62d099feac04f30431a0171d31a335322 | |
parent | 2fe7acb7737e8131cc0368f1f1d642124fc93fa6 (diff) | |
download | bcm5719-llvm-bf4e1981e64c36e871310757468f36b3783c8ca1.tar.gz bcm5719-llvm-bf4e1981e64c36e871310757468f36b3783c8ca1.zip |
[Orc] Fix a stale comment.
llvm-svn: 258187
-rw-r--r-- | llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h b/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h index 62cac6b1fda..7e9474b2d3c 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h @@ -239,14 +239,8 @@ public: /// @brief Add a set of objects (or archives) that will be treated as a unit /// for the purposes of symbol lookup and memory management. /// - /// @return A pair containing (1) A handle that can be used to free the memory - /// allocated for the objects, and (2) a LoadedObjInfoList containing - /// one LoadedObjInfo instance for each object at the corresponding - /// index in the Objects list. - /// - /// This version of this method allows the client to pass in an - /// RTDyldMemoryManager instance that will be used to allocate memory and look - /// up external symbol addresses for the given objects. + /// @return A handle that can be used to refer to the loaded objects (for + /// symbol searching, finalization, freeing memory, etc.). template <typename ObjSetT, typename MemoryManagerPtrT, typename SymbolResolverPtrT> |