diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index abe7f9455f6..60a5113828e 100644 --- a/lib/VMCore/Function.cpp +++ b/lib/VMCore/Function.cpp @@ -376,7 +376,7 @@ static Type *DecodeFixedType(unsigned &NextElt, ArrayRef 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);