projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
ad768d7
)
Add a --disable-compression option to gccas so the default compression of
author
Reid Spencer
<rspencer@reidspencer.com>
Mon, 8 Nov 2004 17:37:04 +0000
(17:37 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Mon, 8 Nov 2004 17:37:04 +0000
(17:37 +0000)
bytecode can be defeated.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17626
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/gccas/gccas.cpp
patch
|
blob
|
history
diff --git
a/tools/gccas/gccas.cpp
b/tools/gccas/gccas.cpp
index fe9c9d4110aa2dba1e878ebe29d9caa1847698a8..3fa0cfa7dd4d1bed214501da4bbfde681faa7721 100644
(file)
--- a/
tools/gccas/gccas.cpp
+++ b/
tools/gccas/gccas.cpp
@@
-49,6
+49,9
@@
namespace {
cl::opt<bool>
DisableDSE("disable-dse", cl::desc("Do not run dead store elimination"));
+ cl::opt<bool>
+ NoCompress("disable-compression", cl::init(false),
+ cl::desc("Don't ompress the generated bytecode"));
}
@@
-182,7
+185,7
@@
int main(int argc, char **argv) {
Passes.add(createVerifierPass());
// Write bytecode to file...
- Passes.add(new WriteBytecodePass(Out));
+ Passes.add(new WriteBytecodePass(Out
,false,!NoCompress
));
// Run our queue of passes all at once now, efficiently.
Passes.run(*M.get());