improve comment.

llvm-svn: 28296
This commit is contained in:
Chris Lattner 2006-05-14 19:10:22 +00:00
parent e09437b26e
commit a1577bfac0

View File

@ -28,6 +28,10 @@
namespace llvm {
class Module;
/// WriteBytecodeToFile - Write the specified module to the specified output
/// stream. If compress is set to true, try to use compression when writing
/// out the file. This throws an std::string if there is an error writing
/// the file.
void WriteBytecodeToFile(const Module *M, std::ostream &Out,
bool compress = true);
} // End llvm namespace