[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Oct 23 15:39:12 PDT 2005



Changes in directory llvm/lib/ExecutionEngine/JIT:

TargetSelect.cpp updated: 1.9 -> 1.10
---
Log message:

Shrinkify to match llc


---
Diffs of the changes:  (+3 -3)

 TargetSelect.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp
diff -u llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.9 llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.10
--- llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp:1.9	Fri Sep  2 14:27:43 2005
+++ llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp	Sun Oct 23 17:39:01 2005
@@ -26,15 +26,15 @@
 
 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.






More information about the llvm-commits mailing list