[llvm-commits] CVS: llvm/tools/llvm-dis/Makefile dis.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Aug 28 16:35:01 PDT 2003
Changes in directory llvm/tools/llvm-dis:
Makefile updated: 1.10 -> 1.11
dis.cpp updated: 1.31 -> 1.32
---
Log message:
Renaming LLVM `dis' to `llvm-dis'.
---
Diffs of the changes:
Index: llvm/tools/llvm-dis/Makefile
diff -u llvm/tools/llvm-dis/Makefile:1.10 llvm/tools/llvm-dis/Makefile:1.11
--- llvm/tools/llvm-dis/Makefile:1.10 Fri Aug 8 10:37:35 2003
+++ llvm/tools/llvm-dis/Makefile Thu Aug 28 16:34:13 2003
@@ -1,5 +1,5 @@
LEVEL = ../..
-TOOLNAME = dis
+TOOLNAME = llvm-dis
USEDLIBS = bcreader cwriter ipa.a vmcore support.a
include $(LEVEL)/Makefile.common
Index: llvm/tools/llvm-dis/dis.cpp
diff -u llvm/tools/llvm-dis/dis.cpp:1.31 llvm/tools/llvm-dis/dis.cpp:1.32
--- llvm/tools/llvm-dis/dis.cpp:1.31 Sat May 31 16:47:16 2003
+++ llvm/tools/llvm-dis/dis.cpp Thu Aug 28 16:34:13 2003
@@ -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 @@
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));
More information about the llvm-commits
mailing list