Fix compile error.

llvm-svn: 156986
This commit is contained in:
Manuel Klimek 2012-05-17 09:32:05 +00:00
parent 96d0c925e9
commit 0fc33af2a7
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ static Type *DecodeFixedType(unsigned &NextElt, ArrayRef<unsigned char> Infos,
case IIT_F32: return Type::getFloatTy(Context);
case IIT_F64: return Type::getDoubleTy(Context);
case IIT_MMX: return Type::getX86_MMXTy(Context);
case IIT_METADATA: return Type::Type::getMetadataTy(Context);
case IIT_METADATA: return Type::getMetadataTy(Context);
case IIT_EMPTYSTRUCT: return StructType::get(Context);
case IIT_V2:
return VectorType::get(DecodeFixedType(NextElt, Infos, Tys, Context), 2);