From: Reid Spencer Date: Sun, 7 Nov 2004 18:18:11 +0000 (+0000) Subject: Make compression the default on writing. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=78d215b76d0eddc622f5dd1a4c26f3637bc3ab07;p=oota-llvm.git Make compression the default on writing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17577 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Bytecode/Writer.h b/include/llvm/Bytecode/Writer.h index 4a6f5f0f413..ad6c7741b52 100644 --- a/include/llvm/Bytecode/Writer.h +++ b/include/llvm/Bytecode/Writer.h @@ -29,7 +29,7 @@ namespace llvm { class Module; void WriteBytecodeToFile(const Module *M, std::ostream &Out, - bool compress = false); + bool compress = true); } // End llvm namespace #endif