diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-21 06:34:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-21 06:34:18 +0000 |
commit | 19bb6b996bfc5271522bab2b3cd362bbd18b7d46 (patch) | |
tree | 175c4610301b75ac4ebc776d16775e607e5ead4a /llvm/tools/llvm-as/llvm-as.cpp | |
parent | d7c8b3c105244135e40d075459d573c26516c359 (diff) | |
download | bcm5719-llvm-19bb6b996bfc5271522bab2b3cd362bbd18b7d46.tar.gz bcm5719-llvm-19bb6b996bfc5271522bab2b3cd362bbd18b7d46.zip |
default to emiting an uncompressed .bc file
llvm-svn: 33420
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index dd29bc19e83..e3dbfb46be9 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -43,7 +43,7 @@ static cl::opt<bool> DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden); static cl::opt<bool> -NoCompress("disable-compression", cl::init(false), +NoCompress("disable-compression", cl::init(true), cl::desc("Don't compress the generated bytecode")); static cl::opt<bool> |