diff options
author | Frits van Bommel <fvbommel@gmail.com> | 2011-07-18 12:00:32 +0000 |
---|---|---|
committer | Frits van Bommel <fvbommel@gmail.com> | 2011-07-18 12:00:32 +0000 |
commit | 717d7edd3e01d928ad9a186f2464331c86f71ef9 (patch) | |
tree | e92ccf103dd045391f4ce3cd7edcb1bf8d318ffd /llvm/lib/Linker | |
parent | 23db45e99c833273144cf2d86e678887944afe6b (diff) | |
download | bcm5719-llvm-717d7edd3e01d928ad9a186f2464331c86f71ef9.tar.gz bcm5719-llvm-717d7edd3e01d928ad9a186f2464331c86f71ef9.zip |
Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previously explicit non-default constructors were used.
Mostly mechanical with some manual reformatting.
llvm-svn: 135390
Diffstat (limited to 'llvm/lib/Linker')
-rw-r--r-- | llvm/lib/Linker/LinkModules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Linker/LinkModules.cpp b/llvm/lib/Linker/LinkModules.cpp index 55aa9bf1888..0c078607bc8 100644 --- a/llvm/lib/Linker/LinkModules.cpp +++ b/llvm/lib/Linker/LinkModules.cpp @@ -261,7 +261,7 @@ Type *TypeMapTy::getImpl(Type *Ty) { cast<PointerType>(Ty)->getAddressSpace()); case Type::FunctionTyID: return *Entry = FunctionType::get(ElementTypes[0], - ArrayRef<Type*>(ElementTypes).slice(1), + makeArrayRef(ElementTypes).slice(1), cast<FunctionType>(Ty)->isVarArg()); case Type::StructTyID: // Note that this is only reached for anonymous structs. |