diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-15 20:35:07 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2008-12-15 20:35:07 +0000 |
commit | b517e9066213882b3bbd44ca85fc8ff07892b891 (patch) | |
tree | 7306bfa19cae4260c58d92c88e2aee97a9e93231 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 6c7ea11300958d09908dc5b9aca6bd58acffef58 (diff) | |
download | bcm5719-llvm-b517e9066213882b3bbd44ca85fc8ff07892b891.tar.gz bcm5719-llvm-b517e9066213882b3bbd44ca85fc8ff07892b891.zip |
Code gen. for ivar references; including bitfield
ivars.
llvm-svn: 61043
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 2959c08a441..a92bac7f1eb 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -497,8 +497,12 @@ public: LValue EmitLValueForField(llvm::Value* Base, FieldDecl* Field, bool isUnion, unsigned CVRQualifiers); LValue EmitLValueForIvar(llvm::Value* Base, const ObjCIvarDecl *Ivar, + const FieldDecl *Field, unsigned CVRQualifiers); + LValue EmitLValueForBitfield(llvm::Value* Base, FieldDecl* Field, + unsigned CVRQualifiers, unsigned idx); + LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E); LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E); |