Restore the -llvm option
authorChris Lattner <sabre@nondot.org>
Wed, 12 Nov 2003 04:59:59 +0000 (04:59 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 12 Nov 2003 04:59:59 +0000 (04:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9915 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-dis/llvm-dis.cpp

index 8d0ca7bc2daad52dccdfc14071d81afd51343aa9..d035b7f91a0fce48d5e922b96eea80d83a1ea027 100644 (file)
@@ -47,7 +47,7 @@ Force("f", cl::desc("Overwrite output files"));
 
 static cl::opt<enum OutputMode>
 WriteMode(cl::desc("Specify the output format:"),
-          cl::values(clEnumVal(LLVM, "Output LLVM assembly"),
+          cl::values(clEnumValN(LLVM, "llvm", "Output LLVM assembly"),
                      clEnumVal(c, "Output C code for program"),
                     0));