diff options
-rw-r--r-- | tools/llc/llc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index c6bcf8dcd6..7693845042 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -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> |