Fix PR1198, by adding initial i128 support. Patch by Dan Gohman.

llvm-svn: 34256
This commit is contained in:
Chris Lattner 2007-02-13 23:41:38 +00:00
parent 9b600ab5a6
commit d08d31f68a
1 changed files with 1 additions and 0 deletions

View File

@ -2200,6 +2200,7 @@ MVT::ValueType TargetLowering::getValueType(const Type *Ty) const {
case 16: return MVT::i16;
case 32: return MVT::i32;
case 64: return MVT::i64;
case 128: return MVT::i128;
}
break;
case Type::FloatTyID: return MVT::f32;