[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 16 11:50:14 PST 2006



Changes in directory llvm/lib/Target:

TargetLowering.cpp updated: 1.46 -> 1.47
---
Log message:

set TransformToType correctly for vector types.


---
Diffs of the changes:  (+8 -0)

 TargetLowering.cpp |    8 ++++++++
 1 files changed, 8 insertions(+)


Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.46 llvm/lib/Target/TargetLowering.cpp:1.47
--- llvm/lib/Target/TargetLowering.cpp:1.46	Mon Mar 13 17:16:31 2006
+++ llvm/lib/Target/TargetLowering.cpp	Thu Mar 16 13:50:01 2006
@@ -124,6 +124,14 @@
   // Set MVT::Vector to always be Expanded
   SetValueTypeAction(MVT::Vector, Expand, *this, TransformToType, 
                      ValueTypeActions);
+  
+  // Loop over all of the legal vector value types, specifying an identity type
+  // transformation.
+  for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
+       i != MVT::LAST_VECTOR_VALUETYPE; ++i) {
+    if (isTypeLegal((MVT::ValueType)i))
+      TransformToType[i] = (MVT::ValueType)i;
+  }
 
   assert(isTypeLegal(MVT::f64) && "Target does not support FP?");
   TransformToType[MVT::f64] = MVT::f64;






More information about the llvm-commits mailing list