summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2005-09-02 19:27:43 +0000
committerJim Laskey <jlaskey@mac.com>2005-09-02 19:27:43 +0000
commit27d628dfc9c2a7d4e74dde0fee1876f5c6202fc5 (patch)
tree79fd6b9c8aef60b4c82574257ebcc8cc297d67cb /llvm/lib/ExecutionEngine
parent1e89e36dcd6e2dac68725ab59c0b16396f36aea9 (diff)
downloadbcm5719-llvm-27d628dfc9c2a7d4e74dde0fee1876f5c6202fc5.tar.gz
bcm5719-llvm-27d628dfc9c2a7d4e74dde0fee1876f5c6202fc5.zip
Add help support for -mcpu and -mattr.
llvm-svn: 23222
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 5b1ee74cc17..508604797fd 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"),
+ cl::desc("Target a specific cpu type (-mcpu=help for list of choices)"),
cl::value_desc("cpu-name"),
cl::init(""));
static cl::list<std::string>
MAttrs("mattr",
cl::CommaSeparated,
- cl::desc("Target specific attributes:"),
- cl::value_desc("attributes"));
+ cl::desc("Target specific attributes (-mattr=help for list of choices)"),
+ cl::value_desc("attr1,+attr2, ..., -attrN"));
/// create - Create an return a new JIT compiler if there is one available
/// for the current target. Otherwise, return null.
OpenPOWER on IntegriCloud