summaryrefslogtreecommitdiff
path: root/tools/llvm-dis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-13 23:24:46 +0000
committerChris Lattner <sabre@nondot.org>2004-02-13 23:24:46 +0000
commite8e7a188ec253f0c403dcb346cfceec70bee63b7 (patch)
tree12293afe20bacf5cb4a0330782242ef1c1ef0123 /tools/llvm-dis
parent2f1f8e0c4e0d5c77db35aba12bc3ab1282f55ec3 (diff)
downloadllvm-e8e7a188ec253f0c403dcb346cfceec70bee63b7.tar.gz
llvm-e8e7a188ec253f0c403dcb346cfceec70bee63b7.tar.bz2
llvm-e8e7a188ec253f0c403dcb346cfceec70bee63b7.tar.xz
Do not advertise our -c option anymore
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11413 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-dis')
-rw-r--r--tools/llvm-dis/llvm-dis.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/llvm-dis/llvm-dis.cpp b/tools/llvm-dis/llvm-dis.cpp
index 21d5162465..c355434b44 100644
--- a/tools/llvm-dis/llvm-dis.cpp
+++ b/tools/llvm-dis/llvm-dis.cpp
@@ -48,7 +48,8 @@ static cl::opt<enum OutputMode>
WriteMode(cl::desc("Specify the output format:"),
cl::values(clEnumValN(LLVM, "llvm", "Output LLVM assembly"),
clEnumVal(c, "Output C code for program"),
- 0));
+ 0),
+ cl::ReallyHidden);
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv, " llvm .bc -> .ll disassembler\n");