Make writing compressed bytecode the default.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 8 Nov 2004 17:35:34 +0000 (17:35 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 8 Nov 2004 17:35:34 +0000 (17:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17625 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bytecode/WriteBytecodePass.h

index 8a061d298a7646e7b4a5f861842a92bdab82eccc..387bd0a9ba7dd82da60a816fe998bee090b620d2 100644 (file)
@@ -28,7 +28,7 @@ class WriteBytecodePass : public ModulePass {
 public:
   WriteBytecodePass() 
     : Out(&std::cout), DeleteStream(false), CompressFile(true) {}
-  WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = false ) 
+  WriteBytecodePass(std::ostream *o, bool DS = false, bool CF = true ) 
     : Out(o), DeleteStream(DS),  CompressFile(CF) {}
 
   inline ~WriteBytecodePass() {