From 667eeca19ddbefd42d596afe6446c1aaa6bc136a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 Oct 2005 22:39:01 +0000 Subject: [PATCH] Shrinkify to match llc git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23912 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/JIT/TargetSelect.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ExecutionEngine/JIT/TargetSelect.cpp b/lib/ExecutionEngine/JIT/TargetSelect.cpp index 508604797fd..592020fae11 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 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 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. -- 2.34.1