[llvm-commits] CVS: llvm/tools/opt/opt.cpp
Chris Lattner
sabre at nondot.org
Sat Jan 20 22:28:59 PST 2007
Changes in directory llvm/tools/opt:
opt.cpp updated: 1.125 -> 1.126
---
Log message:
default to emiting an uncompressed .bc file
---
Diffs of the changes: (+1 -1)
opt.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/opt/opt.cpp
diff -u llvm/tools/opt/opt.cpp:1.125 llvm/tools/opt/opt.cpp:1.126
--- llvm/tools/opt/opt.cpp:1.125 Wed Dec 6 19:30:32 2006
+++ llvm/tools/opt/opt.cpp Sun Jan 21 00:28:44 2007
@@ -41,7 +41,7 @@
static cl::list<const PassInfo*, bool, PassNameParser>
PassList(cl::desc("Optimizations available:"));
-static cl::opt<bool> NoCompress("disable-compression", cl::init(false),
+static cl::opt<bool> NoCompress("disable-compression", cl::init(true),
cl::desc("Don't compress the generated bytecode"));
// Other command line options...
More information about the llvm-commits
mailing list