diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-12 06:29:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-12 06:29:11 +0000 |
commit | 811bf3669f4d82c57fe3cd3c49050fdbc95d0aff (patch) | |
tree | 5d72ed8d607db9002be5bc7ffe236879ffacfd13 /lib/CodeGen/CodeGenFunction.h | |
parent | cd87d1e4d1b0097877b0f9c2065900717d2aacba (diff) |
insert a bitcast in the 'expand' case of argument passing when needed. This
fixes the -m32 build of oggenc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 74324e4dc0..67e63cd346 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2315,7 +2315,8 @@ private: /// Ty, into individual arguments on the provided vector \arg Args. See /// ABIArgInfo::Expand. void ExpandTypeToArgs(QualType Ty, RValue Src, - llvm::SmallVector<llvm::Value*, 16> &Args); + llvm::SmallVector<llvm::Value*, 16> &Args, + llvm::FunctionType *IRFuncTy); llvm::Value* EmitAsmInput(const AsmStmt &S, const TargetInfo::ConstraintInfo &Info, |