Do not advertise our -c option anymore

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11413 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-02-13 23:24:46 +00:00
parent 2f1f8e0c4e
commit e8e7a188ec

View 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");