summaryrefslogtreecommitdiff
path: root/tools/lto
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-21 06:34:18 +0000
committerChris Lattner <sabre@nondot.org>2007-01-21 06:34:18 +0000
commit17be6791b8b22b36850340a44a6f05de5c3cbf85 (patch)
treee93138f9dfc08cc733f7254d7f92c2635d87e627 /tools/lto
parent9b5b182e5f897b559fde4a20290f017ddc43162c (diff)
downloadllvm-17be6791b8b22b36850340a44a6f05de5c3cbf85.tar.gz
llvm-17be6791b8b22b36850340a44a6f05de5c3cbf85.tar.bz2
llvm-17be6791b8b22b36850340a44a6f05de5c3cbf85.tar.xz
default to emiting an uncompressed .bc file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto')
-rw-r--r--tools/lto/lto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp
index 383da87a62..38f01a004a 100644
--- a/tools/lto/lto.cpp
+++ b/tools/lto/lto.cpp
@@ -364,7 +364,7 @@ LTO::optimizeModules(const std::string &OutputFilename,
tempFileName += "0.bc";
std::ofstream Out(tempFileName.c_str(), io_mode);
OStream L(Out);
- WriteBytecodeToFile(bigOne, L, true);
+ WriteBytecodeToFile(bigOne, L);
}
// Strip leading underscore because it was added to match names
@@ -418,7 +418,7 @@ LTO::optimizeModules(const std::string &OutputFilename,
tempFileName += "1.bc";
std::ofstream Out(tempFileName.c_str(), io_mode);
OStream L(Out);
- WriteBytecodeToFile(bigOne, L, true);
+ WriteBytecodeToFile(bigOne, L);
}
targetTriple = bigOne->getTargetTriple();