aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-09-04 03:20:13 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-09-04 03:20:13 +0000
commit80e62c29fe21cd06c93eba6e72b7e32dca06fcf9 (patch)
tree6728033352a9c86e77b0c5dfeb037e4b374f2cc5 /lib/CodeGen/CodeGenFunction.h
parent3b6eede6b1d8ceac67cf58e5f0db1beaae904709 (diff)
Implement codegen of aggregates as lvalues in binary expressions,
e.g. "(a = b).somefield". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index e43b2d3961..853f445384 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -282,6 +282,8 @@ public:
void EmitStoreThroughPropertyRefLValue(RValue Src, LValue Dst, QualType Ty);
// Note: only availabe for agg return types
+ LValue EmitBinaryOperatorLValue(const BinaryOperator *E);
+ // Note: only availabe for agg return types
LValue EmitCallExprLValue(const CallExpr *E);
LValue EmitDeclRefLValue(const DeclRefExpr *E);