[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h
Nate Begeman
natebegeman at mac.com
Thu Nov 17 13:44:54 PST 2005
Changes in directory llvm/include/llvm/Target:
TargetLowering.h updated: 1.27 -> 1.28
---
Log message:
Teach the type lowering code about turning packed types into vector types.
Next step: generating vector dag nodes, and legalizing them into scalar
code.
---
Diffs of the changes: (+1 -0)
TargetLowering.h | 1 +
1 files changed, 1 insertion(+)
Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.27 llvm/include/llvm/Target/TargetLowering.h:1.28
--- llvm/include/llvm/Target/TargetLowering.h:1.27 Thu Oct 20 19:02:42 2005
+++ llvm/include/llvm/Target/TargetLowering.h Thu Nov 17 15:44:42 2005
@@ -189,6 +189,7 @@
case Type::FloatTyID: return MVT::f32;
case Type::DoubleTyID: return MVT::f64;
case Type::PointerTyID: return PointerTy;
+ case Type::PackedTyID: return MVT::Vector;
}
}
More information about the llvm-commits
mailing list