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 | ad0bf0fc0cead2c714d6a0e164d3bdb2864eb8e1 (patch) | |
tree | 72dcc466d658891eaf8e3628adb9f87cc2c86df9 /tools/llvm-dis | |
parent | cbb62dd6b779db03a8ce907b109f05bd5c4a843a (diff) | |
download | external_llvm-ad0bf0fc0cead2c714d6a0e164d3bdb2864eb8e1.zip external_llvm-ad0bf0fc0cead2c714d6a0e164d3bdb2864eb8e1.tar.gz external_llvm-ad0bf0fc0cead2c714d6a0e164d3bdb2864eb8e1.tar.bz2 |
Renaming LLVM `dis' to `llvm-dis'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-dis')
-rw-r--r-- | tools/llvm-dis/Makefile | 2 | ||||
-rw-r--r-- | tools/llvm-dis/dis.cpp | 9 | ||||
-rw-r--r-- | tools/llvm-dis/llvm-dis.cpp | 9 |
3 files changed, 9 insertions, 11 deletions
diff --git a/tools/llvm-dis/Makefile b/tools/llvm-dis/Makefile index 4409a17..0238dd2 100644 --- a/tools/llvm-dis/Makefile +++ b/tools/llvm-dis/Makefile @@ -1,5 +1,5 @@ LEVEL = ../.. -TOOLNAME = dis +TOOLNAME = llvm-dis USEDLIBS = bcreader cwriter ipa.a vmcore support.a include $(LEVEL)/Makefile.common diff --git a/tools/llvm-dis/dis.cpp b/tools/llvm-dis/dis.cpp index bf46fe6..1a4a46b 100644 --- a/tools/llvm-dis/dis.cpp +++ b/tools/llvm-dis/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)); diff --git a/tools/llvm-dis/llvm-dis.cpp b/tools/llvm-dis/llvm-dis.cpp index bf46fe6..1a4a46b 100644 --- a/tools/llvm-dis/llvm-dis.cpp +++ b/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)); |