diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-11 18:45:35 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-11 18:45:35 +0000 |
commit | 0e33231d554b32e32e23400eb92c9aa44e0e251b (patch) | |
tree | c308e425d20f6e6a0055d24c6e38f526d717ead8 /include | |
parent | 9a82d21512da4a8129ef32d6749b9ae3997de517 (diff) | |
download | external_llvm-0e33231d554b32e32e23400eb92c9aa44e0e251b.zip external_llvm-0e33231d554b32e32e23400eb92c9aa44e0e251b.tar.gz external_llvm-0e33231d554b32e32e23400eb92c9aa44e0e251b.tar.bz2 |
Remove Path::GetBitcodeLibraryPaths.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183765 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/PathV1.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/llvm/Support/PathV1.h b/include/llvm/Support/PathV1.h index d84be7a..9fe01da 100644 --- a/include/llvm/Support/PathV1.h +++ b/include/llvm/Support/PathV1.h @@ -116,16 +116,6 @@ namespace sys { /// @brief Construct a path to the system library directory static void GetSystemLibraryPaths(std::vector<sys::Path>& Paths); - /// Construct a vector of sys::Path that contains the "standard" bitcode - /// library paths suitable for linking into an llvm program. This function - /// *must* return the value of LLVM_LIB_SEARCH_PATH as well as the value - /// of LLVM_LIBDIR. It also must provide the System library paths as - /// returned by GetSystemLibraryPaths. - /// @see GetSystemLibraryPaths - /// @brief Construct a list of directories in which bitcode could be - /// found. - static void GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths); - /// Construct a path to the current user's home directory. The /// implementation must use an operating system specific mechanism for /// determining the user's home directory. For example, the environment |