From 27d628dfc9c2a7d4e74dde0fee1876f5c6202fc5 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Fri, 2 Sep 2005 19:27:43 +0000 Subject: Add help support for -mcpu and -mattr. llvm-svn: 23222 --- llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/ExecutionEngine') 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 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 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. -- cgit v1.2.3