summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-10-23 22:39:01 +0000
committerChris Lattner <sabre@nondot.org>2005-10-23 22:39:01 +0000
commitac230143556b9847d557c8d2357b4cba95223c31 (patch)
treea21d88c4c18e798c2030a05d9376101464ee67b4 /llvm/lib/ExecutionEngine
parent41548484f4024469c774e5c5f14ba05bd40d6472 (diff)
downloadbcm5719-llvm-ac230143556b9847d557c8d2357b4cba95223c31.tar.gz
bcm5719-llvm-ac230143556b9847d557c8d2357b4cba95223c31.zip
Shrinkify to match llc
llvm-svn: 23912
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
index 508604797fd..592020fae11 100644
--- a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
+++ b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
@@ -26,15 +26,15 @@ MArch("march", cl::desc("Architecture to generate assembly 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::value_desc("attr1,+attr2, ..., -attrN"));
+ cl::desc("Target specific attributes (-mattr=help for details)"),
+ cl::value_desc("a1,+a2,-a3,..."));
/// create - Create an return a new JIT compiler if there is one available
/// for the current target. Otherwise, return null.
OpenPOWER on IntegriCloud