Do not advertise our -c option anymore
authorChris Lattner <sabre@nondot.org>
Fri, 13 Feb 2004 23:24:46 +0000 (23:24 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 Feb 2004 23:24:46 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11413 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-dis/llvm-dis.cpp

index 21d5162465779e68a014800c937195f34e382814..c355434b4445787a3483d0028822b17899cc7fba 100644 (file)
@@ -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");