[llvm-commits] CVS: llvm/tools/lto/lto.cpp
Chris Lattner
sabre at nondot.org
Sat Jan 20 22:34:34 PST 2007
Changes in directory llvm/tools/lto:
lto.cpp updated: 1.30 -> 1.31
---
Log message:
default to emiting an uncompressed .bc file
---
Diffs of the changes: (+2 -2)
lto.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/tools/lto/lto.cpp
diff -u llvm/tools/lto/lto.cpp:1.30 llvm/tools/lto/lto.cpp:1.31
--- llvm/tools/lto/lto.cpp:1.30 Mon Jan 8 12:42:27 2007
+++ llvm/tools/lto/lto.cpp Sun Jan 21 00:34:18 2007
@@ -364,7 +364,7 @@
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 @@
tempFileName += "1.bc";
std::ofstream Out(tempFileName.c_str(), io_mode);
OStream L(Out);
- WriteBytecodeToFile(bigOne, L, true);
+ WriteBytecodeToFile(bigOne, L);
}
targetTriple = bigOne->getTargetTriple();
More information about the llvm-commits
mailing list