diff options
author | Devang Patel <dpatel@apple.com> | 2008-02-21 01:41:25 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-02-21 01:41:25 +0000 |
commit | ef00f9d377040c9599ac827daaaa0722381fd310 (patch) | |
tree | 90f0a8576fa0b5e40d380340ab0c51f31efb8eec /tools/llvm-as | |
parent | 063284c001666c0a3906acbe0a26dc7cae5f081c (diff) |
Add -disable-output option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-as')
-rw-r--r-- | tools/llvm-as/llvm-as.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp index 026533634e..d9fa1fa7f4 100644 --- a/tools/llvm-as/llvm-as.cpp +++ b/tools/llvm-as/llvm-as.cpp @@ -40,6 +40,9 @@ static cl::opt<bool> Force("f", cl::desc("Overwrite output files")); static cl::opt<bool> +DisableOutput("disable-output", cl::desc("Disable output"), cl::init(false)); + +static cl::opt<bool> DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden); static cl::opt<bool> @@ -125,8 +128,9 @@ int main(int argc, char **argv) { return 1; } - if (Force || !CheckBitcodeOutputToConsole(Out,true)) - WriteBitcodeToFile(M.get(), *Out); + if (!DisableOutput) + if (Force || !CheckBitcodeOutputToConsole(Out,true)) + WriteBitcodeToFile(M.get(), *Out); } catch (const std::string& msg) { cerr << argv[0] << ": " << msg << "\n"; exitCode = 1; |