Enable compression by default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17566 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-11-07 05:43:51 +00:00
parent ae70fedfab
commit 34b9071a3d

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;
}