Add support for compressed bytecode

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17535 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2004-11-06 23:17:23 +00:00
parent 2334e6d908
commit 17f52c5c46
5 changed files with 138 additions and 27 deletions

View File

@ -28,7 +28,8 @@
namespace llvm {
class Module;
void WriteBytecodeToFile(const Module *M, std::ostream &Out);
void WriteBytecodeToFile(const Module *M, std::ostream &Out,
bool compress = false);
} // End llvm namespace
#endif