From 78d215b76d0eddc622f5dd1a4c26f3637bc3ab07 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 7 Nov 2004 18:18:11 +0000 Subject: [PATCH] Make compression the default on writing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17577 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bytecode/Writer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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