shrinkify the option name a bit
authorChris Lattner <sabre@nondot.org>
Sun, 23 Oct 2005 22:35:42 +0000 (22:35 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 23 Oct 2005 22:35:42 +0000 (22:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23910 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llc/llc.cpp

index c6bcf8dcd66c61f2d106a0f7fd9cabd5345e6199..76938450425cb8b4cc87dd5b08aed78c967bf560 100644 (file)
@@ -50,14 +50,14 @@ MArch("march", cl::desc("Architecture to generate code for:"));
 
 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>