diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-11 20:59:32 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-11 20:59:32 +0000 |
commit | 5b5c9ef865607e179413462dcd71bcebb5b7daae (patch) | |
tree | 7602e021f1306845500bf4562879e32395c0e558 /lib/CodeGen/CodeGenFunction.h | |
parent | 26cc89ffb1cc57313371b4175ceac56a2f975641 (diff) |
Support IRgen of va_arg of structure as l-value.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index fcd0ebaa0a..39f1c1d6ca 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -555,8 +555,10 @@ public: // Note: only availabe for agg return types LValue EmitBinaryOperatorLValue(const BinaryOperator *E); - // Note: only availabe for agg return types + // Note: only available for agg return types LValue EmitCallExprLValue(const CallExpr *E); + // Note: only available for agg return types + LValue EmitVAArgExprLValue(const VAArgExpr *E); LValue EmitDeclRefLValue(const DeclRefExpr *E); LValue EmitStringLiteralLValue(const StringLiteral *E); LValue EmitPredefinedFunctionName(unsigned Type); |