[llvm-commits] CVS: llvm/lib/VMCore/ValueTypes.cpp
Chris Lattner
sabre at nondot.org
Tue Feb 13 15:58:12 PST 2007
Changes in directory llvm/lib/VMCore:
ValueTypes.cpp updated: 1.12 -> 1.13
---
Log message:
better support for i128.
---
Diffs of the changes: (+1 -0)
ValueTypes.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/VMCore/ValueTypes.cpp
diff -u llvm/lib/VMCore/ValueTypes.cpp:1.12 llvm/lib/VMCore/ValueTypes.cpp:1.13
--- llvm/lib/VMCore/ValueTypes.cpp:1.12 Sat Jan 20 16:35:55 2007
+++ llvm/lib/VMCore/ValueTypes.cpp Tue Feb 13 17:57:55 2007
@@ -93,6 +93,7 @@
case MVT::i16: return Type::Int16Ty;
case MVT::i32: return Type::Int32Ty;
case MVT::i64: return Type::Int64Ty;
+ case MVT::i128: return IntegerType::get(128);
case MVT::f32: return Type::FloatTy;
case MVT::f64: return Type::DoubleTy;
case MVT::v8i8: return PackedType::get(Type::Int8Ty, 8);
More information about the llvm-commits
mailing list