Enable compression by default.

llvm-svn: 17566
This commit is contained in:
Reid Spencer 2004-11-07 05:43:51 +00:00
parent 7b05ef63f1
commit f0adf68dfa
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ bool BugDriver::writeProgramToFile(const std::string &Filename,
Module *M) const {
std::ofstream Out(Filename.c_str());
if (!Out.good()) return true;
WriteBytecodeToFile(M ? M : Program, Out);
WriteBytecodeToFile(M ? M : Program, Out, /*compression=*/true);
return false;
}