[llvm-commits] CVS: llvm/tools/llc/llc.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 23 15:35:53 PDT 2005
Changes in directory llvm/tools/llc:
llc.cpp updated: 1.114 -> 1.115
---
Log message:
shrinkify the option name a bit
---
Diffs of the changes: (+2 -2)
llc.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/tools/llc/llc.cpp
diff -u llvm/tools/llc/llc.cpp:1.114 llvm/tools/llc/llc.cpp:1.115
--- llvm/tools/llc/llc.cpp:1.114 Sat Oct 22 17:00:45 2005
+++ llvm/tools/llc/llc.cpp Sun Oct 23 17:35:42 2005
@@ -50,14 +50,14 @@
static cl::opt<std::string>
MCPU("mcpu",
- cl::desc("Target a specific cpu type (-mcpu=help for list of choices)"),
+ cl::desc("Target a specific cpu type (-mcpu=help for details)"),
cl::value_desc("cpu-name"),
cl::init(""));
static cl::list<std::string>
MAttrs("mattr",
cl::CommaSeparated,
- cl::desc("Target specific attributes (-mattr=help for list of choices)"),
+ cl::desc("Target specific attributes (-mattr=help for details)"),
cl::value_desc("attr1,+attr2, ..., -attrN"));
cl::opt<TargetMachine::CodeGenFileType>
More information about the llvm-commits
mailing list