aboutsummaryrefslogtreecommitdiffstats
path: root/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
commit667eeca19ddbefd42d596afe6446c1aaa6bc136a (patch)
tree0b0d769b25f27d31881040000bc2119cb78d6531 /lib/ExecutionEngine
parent2094725532836da20db56412ad7f88bc8eb6e586 (diff)
downloadexternal_llvm-667eeca19ddbefd42d596afe6446c1aaa6bc136a.zip
external_llvm-667eeca19ddbefd42d596afe6446c1aaa6bc136a.tar.gz
external_llvm-667eeca19ddbefd42d596afe6446c1aaa6bc136a.tar.bz2
Shrinkify to match llc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/TargetSelect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ExecutionEngine/JIT/TargetSelect.cpp b/lib/ExecutionEngine/JIT/TargetSelect.cpp
index 5086047..592020f 100644
--- a/lib/ExecutionEngine/JIT/TargetSelect.cpp
+++ b/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.