diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:34:13 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:34:13 +0000 |
commit | f12549d92147f16ffc1d52926cbb3fdd06107f02 (patch) | |
tree | dbe4a64cc1b82ea0eedd1b4802d20df54640fca9 /llvm/tools/llvm-dis/llvm-dis.cpp | |
parent | 9893027b5ed6042fc7f32359661cf5318b896db7 (diff) | |
download | bcm5719-llvm-f12549d92147f16ffc1d52926cbb3fdd06107f02.tar.gz bcm5719-llvm-f12549d92147f16ffc1d52926cbb3fdd06107f02.zip |
Renaming LLVM `dis' to `llvm-dis'.
llvm-svn: 8189
Diffstat (limited to 'llvm/tools/llvm-dis/llvm-dis.cpp')
-rw-r--r-- | llvm/tools/llvm-dis/llvm-dis.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/tools/llvm-dis/llvm-dis.cpp b/llvm/tools/llvm-dis/llvm-dis.cpp index bf46fe62e3f..1a4a46b8b91 100644 --- a/llvm/tools/llvm-dis/llvm-dis.cpp +++ b/llvm/tools/llvm-dis/llvm-dis.cpp @@ -2,9 +2,9 @@ // LLVM 'DIS' UTILITY // // This utility may be invoked in the following manner: -// dis [options] - Read LLVM bytecode from stdin, write assembly to stdout -// dis [options] x.bc - Read LLVM bytecode from the x.bc file, write assembly -// to the x.ll file. +// llvm-dis [options] - Read LLVM bytecode from stdin, write asm to stdout +// llvm-dis [options] x.bc - Read LLVM bytecode from the x.bc file, write asm +// to the x.ll file. // Options: // --help - Output information about command line switches // -c - Print C code instead of LLVM assembly @@ -39,8 +39,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(clEnumVal(llvm, "Output LLVM assembly"), clEnumVal(c , "Output C code for program"), 0)); |