diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-13 16:55:34 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-13 16:55:34 +0000 |
commit | a13341737da29f4dda4eceb8f03e7ff4b09f6e44 (patch) | |
tree | 41e4eea193ce4b04644dc2dfea4e29676ef8e2b9 /include | |
parent | a56516ee08d1e49ec3d6c490e76da5d7fa2c3836 (diff) | |
download | external_llvm-a13341737da29f4dda4eceb8f03e7ff4b09f6e44.zip external_llvm-a13341737da29f4dda4eceb8f03e7ff4b09f6e44.tar.gz external_llvm-a13341737da29f4dda4eceb8f03e7ff4b09f6e44.tar.bz2 |
Remove unused GetAddressOfSymbol()
Thanks Daniel Dunbar!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/System/DynamicLibrary.h | 27 |
1 files changed, 2 insertions, 25 deletions
diff --git a/include/llvm/System/DynamicLibrary.h b/include/llvm/System/DynamicLibrary.h index 4ac08d0..5da0ea2 100644 --- a/include/llvm/System/DynamicLibrary.h +++ b/include/llvm/System/DynamicLibrary.h @@ -38,19 +38,13 @@ namespace sys { public: /// Construct a DynamicLibrary that represents the currently executing /// program. The program must have been linked with -export-dynamic or - /// -dlopen self for this to work. Any symbols retrieved with the - /// GetAddressOfSymbol function will refer to the program not to any - /// library. + /// -dlopen self for this to work. /// @throws std::string indicating why the program couldn't be opened. /// @brief Open program as dynamic library. DynamicLibrary(); /// After destruction, the symbols of the library will no longer be - /// available to the program. It is important to make sure the lifespan - /// of a DynamicLibrary exceeds the lifetime of the pointers returned - /// by the GetAddressOfSymbol otherwise the program may walk off into - /// uncharted territory. - /// @see GetAddressOfSymbol. + /// available to the program. /// @brief Closes the DynamicLibrary ~DynamicLibrary(); @@ -92,26 +86,9 @@ namespace sys { } /// @} - /// @name Accessors - /// @{ - public: - /// Looks up a \p symbolName in the DynamicLibrary and returns its address - /// if it exists. If the symbol does not exist, returns (void*)0. - /// @returns the address of the symbol or 0. - /// @brief Get the address of a symbol in the DynamicLibrary. - void* GetAddressOfSymbol(const char* symbolName); - - /// @brief Convenience function for C++ophiles. - void* GetAddressOfSymbol(const std::string& symbolName) { - return GetAddressOfSymbol(symbolName.c_str()); - } - - /// @} /// @name Implementation /// @{ protected: - void* handle; // Opaque handle for information about the library - DynamicLibrary(const DynamicLibrary&); ///< Do not implement DynamicLibrary& operator=(const DynamicLibrary&); ///< Do not implement /// @} |