diff options
author | Craig Topper <craig.topper@gmail.com> | 2013-07-05 19:34:19 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2013-07-05 19:34:19 +0000 |
commit | 5603df45df0c7fb2c2fd7771c080e04bd98f6eca (patch) | |
tree | e58d4154cd07ecadafb5292ccc4bc699d9a9786c /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 97c1343c455d7dba9e47d1c91ce4da9a1b9bfbc1 (diff) | |
download | llvm-5603df45df0c7fb2c2fd7771c080e04bd98f6eca.zip llvm-5603df45df0c7fb2c2fd7771c080e04bd98f6eca.tar.gz llvm-5603df45df0c7fb2c2fd7771c080e04bd98f6eca.tar.bz2 |
Use SmallVectorImpl& for function arguments instead of SmallVector.
llvm-svn: 185715
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index a9ed49e..1b62048 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2469,7 +2469,7 @@ private: /// Ty, into individual arguments on the provided vector \arg Args. See /// ABIArgInfo::Expand. void ExpandTypeToArgs(QualType Ty, RValue Src, - SmallVector<llvm::Value*, 16> &Args, + SmallVectorImpl<llvm::Value *> &Args, llvm::FunctionType *IRFuncTy); llvm::Value* EmitAsmInput(const TargetInfo::ConstraintInfo &Info, |