Renaming LLVM `dis' to `llvm-dis'.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 28 Aug 2003 21:34:13 +0000 (21:34 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 28 Aug 2003 21:34:13 +0000 (21:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8189 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-dis/Makefile
tools/llvm-dis/dis.cpp
tools/llvm-dis/llvm-dis.cpp

index 4409a177676d6c394e1b65c91c07b6b4ec50036f..0238dd2a17869c5f11ec68ef6f3a8a8d9cbc344d 100644 (file)
@@ -1,5 +1,5 @@
 LEVEL = ../..
 
-TOOLNAME = dis
+TOOLNAME = llvm-dis
 USEDLIBS = bcreader cwriter ipa.a vmcore support.a
 include $(LEVEL)/Makefile.common
index bf46fe62e3f8a831801f86952fcb8c0cf7ab34ca..1a4a46b8b915da3a86dba90aebc8543f5e496609 100644 (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));
 
index bf46fe62e3f8a831801f86952fcb8c0cf7ab34ca..1a4a46b8b915da3a86dba90aebc8543f5e496609 100644 (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));