diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-07 23:48:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-07 23:48:32 +0000 |
commit | 7cf7c2b703e648cdf1184d406bd53a65050be212 (patch) | |
tree | ff053af208088c5ee74c60c83b5809f473edb223 /include/llvm/Bytecode | |
parent | c6d0b164295ff4400306b9077a8087584ba31224 (diff) |
move an llvmc-specific function out of the bcreader into llvmc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Bytecode')
-rw-r--r-- | include/llvm/Bytecode/Reader.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/llvm/Bytecode/Reader.h b/include/llvm/Bytecode/Reader.h index f1757455ed..e33e3101d4 100644 --- a/include/llvm/Bytecode/Reader.h +++ b/include/llvm/Bytecode/Reader.h @@ -81,18 +81,6 @@ Module* ParseBytecodeBuffer( std::string *ErrMsg = 0 ///< Optional place to return an error message ); -/// This function will read only the necessary parts of a bytecode file in order -/// to determine the list of dependent libraries encoded within it. The \p -/// deplibs parameter will contain a vector of strings of the bytecode module's -/// dependent libraries. -/// @returns true on error, false otherwise -/// @brief Get the list of dependent libraries from a bytecode file. -bool GetBytecodeDependentLibraries( - const std::string &fileName, ///< File name to read bytecode from - Module::LibraryListType& deplibs, ///< List of dependent libraries extracted - BCDecompressor_t *BCDC = Compressor::decompressToNewBuffer, - std::string* ErrMsg = 0 ///< Optional error message holder -); /// This function will read only the necessary parts of a bytecode file in order /// to obtain a list of externally visible global symbols that the bytecode |