diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-10-22 22:57:31 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-10-22 22:57:31 +0000 |
commit | ffba662dd275d1bdd5a5935f4d3cc372b5235d07 (patch) | |
tree | 43aa631d6a9bdc7f52ef5db44d1a9b463a0ff1b2 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 0797404a337a7292c56fb1b769d0a6443c1f4e19 (diff) | |
download | bcm5719-llvm-ffba662dd275d1bdd5a5935f4d3cc372b5235d07.tar.gz bcm5719-llvm-ffba662dd275d1bdd5a5935f4d3cc372b5235d07.zip |
Complete code gen for '.*' binary expression for
both scalar and aggregates.
llvm-svn: 84910
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 3e65e47024b..639e683f036 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -845,7 +845,8 @@ public: LValue EmitObjCKVCRefLValue(const ObjCImplicitSetterGetterRefExpr *E); LValue EmitObjCSuperExprLValue(const ObjCSuperExpr *E); LValue EmitStmtExprLValue(const StmtExpr *E); - + LValue EmitPointerToDataMemberBinaryExpr(const BinaryOperator *E); + //===--------------------------------------------------------------------===// // Scalar Expression Emission //===--------------------------------------------------------------------===// |