1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Enable compression by default.

llvm-svn: 17566
This commit is contained in:
Reid Spencer 2004-11-07 05:43:51 +00:00
parent 12a46e8081
commit 19343b7bff

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