diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2012-04-13 11:22:00 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2012-04-13 11:22:00 +0000 |
commit | eaf856db5d1a272dc7188937206ef4572836f82a (patch) | |
tree | ea360d29807f197c529a7105dad5ece443fca2ae /lib/CodeGen/CodeGenFunction.h | |
parent | 51b92401c9f95023a2ef27064fd5a60fd99175f5 (diff) |
Step forward with supporting of ARM homogenous aggregates:
- Handle unions
- Handle C++ classes
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154664 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 3e0cd14625..f57dd5f587 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2104,6 +2104,8 @@ public: LValue EmitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *E); LValue EmitOpaqueValueLValue(const OpaqueValueExpr *e); + RValue EmitRValueForField(llvm::Value *Addr, const FieldDecl *FD); + class ConstantEmission { llvm::PointerIntPair<llvm::Constant*, 1, bool> ValueAndIsReference; ConstantEmission(llvm::Constant *C, bool isReference) |