From 450e7c3c54ec6bf54230c91dcbb1d1638746e316 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 10 Mar 2008 23:41:23 +0000 Subject: [PATCH] Initialize ArgTypes directly instead of manually copying in the elements. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48195 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Type.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 42c3770913d..6b884445ee8 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -1050,10 +1050,7 @@ class FunctionValType { bool isVarArg; public: FunctionValType(const Type *ret, const std::vector &args, - bool isVA) : RetTy(ret), isVarArg(isVA) { - for (unsigned i = 0; i < args.size(); ++i) - ArgTypes.push_back(args[i]); - } + bool isVA) : RetTy(ret), ArgTypes(args), isVarArg(isVA) {} static FunctionValType get(const FunctionType *FT);