From: Manuel Klimek Date: Thu, 17 May 2012 09:32:05 +0000 (+0000) Subject: Fix compile error. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e9f5d2ea8b0645baec51d88c65a0e7b8368e3cce;p=oota-llvm.git Fix compile error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156986 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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);