diff options
author | Anders Carlsson <andersca@mac.com> | 2009-11-07 22:00:15 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-11-07 22:00:15 +0000 |
commit | 509850ebece3ddd230fd7629c5c08be309f2f828 (patch) | |
tree | 5fb011098cfc5915aaa6f10b4d065648c95a1945 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | d1d002a6fe4d19f3dbaaa4b080779024eeccd210 (diff) | |
download | bcm5719-llvm-509850ebece3ddd230fd7629c5c08be309f2f828.tar.gz bcm5719-llvm-509850ebece3ddd230fd7629c5c08be309f2f828.zip |
Change EmitPointerToDataMemberLValue to take a FieldDecl. No intended functionality change.
llvm-svn: 86407
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 5c592af0222..f2901beca40 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -831,7 +831,8 @@ public: LValue EmitConditionalOperatorLValue(const ConditionalOperator *E); LValue EmitCastLValue(const CastExpr *E); LValue EmitNullInitializationLValue(const CXXZeroInitValueExpr *E); - LValue EmitPointerToDataMemberLValue(const DeclRefExpr *E); + + LValue EmitPointerToDataMemberLValue(const FieldDecl *Field); llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar); |