1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Renaming LLVM dis' to llvm-dis'.

llvm-svn: 8189
This commit is contained in:
Misha Brukman 2003-08-28 21:34:13 +00:00
parent 6da6dc6264
commit a42a115cb9
3 changed files with 9 additions and 11 deletions

View File

@ -1,5 +1,5 @@
LEVEL = ../..
TOOLNAME = dis
TOOLNAME = llvm-dis
USEDLIBS = bcreader cwriter ipa.a vmcore support.a
include $(LEVEL)/Makefile.common

View File

@ -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));

View File

@ -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));