aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Function.cpp
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2012-05-17 09:32:05 +0000
committerManuel Klimek <klimek@google.com>2012-05-17 09:32:05 +0000
commite9f5d2ea8b0645baec51d88c65a0e7b8368e3cce (patch)
tree2455e1fa73356cbd0fe2a290563687c0274fed70 /lib/VMCore/Function.cpp
parentc187df2198bc6e2b038fa2d75af974644874d26f (diff)
Fix compile error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Function.cpp')
-rw-r--r--lib/VMCore/Function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp
index abe7f9455f..60a5113828 100644
--- a/lib/VMCore/Function.cpp
+++ b/lib/VMCore/Function.cpp
@@ -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);