summaryrefslogtreecommitdiff
path: root/tools/lto
diff options
context:
space:
mode:
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();