diff options
author | Manuel Klimek <klimek@google.com> | 2012-05-17 09:32:05 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2012-05-17 09:32:05 +0000 |
commit | 0fc33af2a741f8695e9fad2e8e93b59308162644 (patch) | |
tree | f3d487a835b87ce7dc4130c784fc026d28a52ffd | |
parent | 96d0c925e9f25197368e456747ce74f444e95575 (diff) | |
download | bcm5719-llvm-0fc33af2a741f8695e9fad2e8e93b59308162644.tar.gz bcm5719-llvm-0fc33af2a741f8695e9fad2e8e93b59308162644.zip |
Fix compile error.
llvm-svn: 156986
-rw-r--r-- | llvm/lib/VMCore/Function.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp index abe7f9455f6..60a5113828e 100644 --- a/llvm/lib/VMCore/Function.cpp +++ b/llvm/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); |