[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h
Nate Begeman
natebegeman at mac.com
Mon Nov 28 21:45:44 PST 2005
Changes in directory llvm/include/llvm/Target:
TargetLowering.h updated: 1.28 -> 1.29
---
Log message:
Add the majority of the vector machien value types we expect to support,
and make a few changes to the legalization machinery to support more than
16 types.
---
Diffs of the changes: (+2 -2)
TargetLowering.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.28 llvm/include/llvm/Target/TargetLowering.h:1.29
--- llvm/include/llvm/Target/TargetLowering.h:1.28 Thu Nov 17 15:44:42 2005
+++ llvm/include/llvm/Target/TargetLowering.h Mon Nov 28 23:45:28 2005
@@ -123,7 +123,7 @@
LegalizeAction getTypeAction(MVT::ValueType VT) const {
return (LegalizeAction)((ValueTypeActions >> (2*VT)) & 3);
}
- unsigned getValueTypeActions() const { return ValueTypeActions; }
+ unsigned long long getValueTypeActions() const { return ValueTypeActions; }
/// getTypeToTransformTo - For types supported by the target, this is an
/// identity function. For types that must be promoted to larger types, this
@@ -441,7 +441,7 @@
/// ValueTypeActions - This is a bitvector that contains two bits for each
/// value type, where the two bits correspond to the LegalizeAction enum.
/// This can be queried with "getTypeAction(VT)".
- unsigned ValueTypeActions;
+ unsigned long long ValueTypeActions;
/// TransformToType - For any value types we are promoting or expanding, this
/// contains the value type that we are changing to. For Expanded types, this
More information about the llvm-commits
mailing list