[llvm-commits] CVS: llvm/include/llvm/Bytecode/Writer.h
Chris Lattner
lattner at cs.uiuc.edu
Sun May 14 12:10:35 PDT 2006
Changes in directory llvm/include/llvm/Bytecode:
Writer.h updated: 1.9 -> 1.10
---
Log message:
improve comment.
---
Diffs of the changes: (+4 -0)
Writer.h | 4 ++++
1 files changed, 4 insertions(+)
Index: llvm/include/llvm/Bytecode/Writer.h
diff -u llvm/include/llvm/Bytecode/Writer.h:1.9 llvm/include/llvm/Bytecode/Writer.h:1.10
--- llvm/include/llvm/Bytecode/Writer.h:1.9 Thu Apr 21 15:34:13 2005
+++ llvm/include/llvm/Bytecode/Writer.h Sun May 14 14:10:22 2006
@@ -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
More information about the llvm-commits
mailing list