[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-06-27 Thread Dan Gohman
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.20 - 1.21 --- Log message: Rename (shrinkify) MVT::isExtendedValueType to MVT::isExtendedVT. --- Diffs of the changes: (+2 -2) ValueTypes.cpp |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

Re: [llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-06-26 Thread Chris Lattner
@@ -14,13 +14,21 @@ #include llvm/CodeGen/ValueTypes.h #include llvm/Type.h #include llvm/DerivedTypes.h +#include sstream using namespace llvm; Please use utostr() in llvm/ADT/StringExtras.h instead of sstream. -Chris ___ llvm-commits

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-06-26 Thread Dan Gohman
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.19 - 1.20 --- Log message: Use utostr from StringExtras.h instead of ostringstream from sstream. --- Diffs of the changes: (+4 -7) ValueTypes.cpp | 11 --- 1 files changed, 4 insertions(+), 7 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-06-25 Thread Dan Gohman
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.18 - 1.19 --- Log message: Generalize MVT::ValueType and associated functions to be able to represent extended vector types. Remove the special SDNode opcodes used for pre-legalize vector operations, and the special MVT::Vector

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-05-24 Thread Dan Gohman
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.17 - 1.18 --- Log message: Add cases for v2f32. --- Diffs of the changes: (+2 -0) ValueTypes.cpp |2 ++ 1 files changed, 2 insertions(+) Index: llvm/lib/VMCore/ValueTypes.cpp diff -u llvm/lib/VMCore/ValueTypes.cpp:1.17

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-04-27 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.16 - 1.17 --- Log message: add a way to make this less brittle --- Diffs of the changes: (+7 -3) ValueTypes.cpp | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) Index: llvm/lib/VMCore/ValueTypes.cpp diff

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-03-30 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.15 - 1.16 --- Log message: add a method to turn a type into a VT. --- Diffs of the changes: (+28 -0) ValueTypes.cpp | 28 1 files changed, 28 insertions(+) Index:

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-03-24 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.14 - 1.15 --- Log message: add a valuetype for v1i64, which is needed by mmx. --- Diffs of the changes: (+3 -0) ValueTypes.cpp |3 +++ 1 files changed, 3 insertions(+) Index: llvm/lib/VMCore/ValueTypes.cpp diff -u

[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp

2007-01-20 Thread Chris Lattner
Changes in directory llvm/lib/VMCore: ValueTypes.cpp updated: 1.11 - 1.12 --- Log message: Teach TargetData to handle 'preferred' alignment for each target, and use these alignment amounts to align scalars when we can. Patch by Scott Michel! --- Diffs of the changes: (+11 -2)