[llvm-commits] CVS: llvm/include/llvm/Bytecode/Reader.h

Chris Lattner sabre at nondot.org
Wed Feb 7 15:48:54 PST 2007



Changes in directory llvm/include/llvm/Bytecode:

Reader.h updated: 1.28 -> 1.29
---
Log message:

move an llvmc-specific function out of the bcreader into llvmc.


---
Diffs of the changes:  (+0 -12)

 Reader.h |   12 ------------
 1 files changed, 12 deletions(-)


Index: llvm/include/llvm/Bytecode/Reader.h
diff -u llvm/include/llvm/Bytecode/Reader.h:1.28 llvm/include/llvm/Bytecode/Reader.h:1.29
--- llvm/include/llvm/Bytecode/Reader.h:1.28	Wed Feb  7 15:41:01 2007
+++ llvm/include/llvm/Bytecode/Reader.h	Wed Feb  7 17:48:32 2007
@@ -81,18 +81,6 @@
   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






More information about the llvm-commits mailing list