diff options
author | Anders Carlsson <andersca@mac.com> | 2009-09-14 01:10:45 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-09-14 01:10:45 +0000 |
commit | 96bad9a5cd8f2629cd538dab8eaa402839d3442e (patch) | |
tree | 57acaf5a247bd0f26fcdb16ba6fe2f270eff8cde /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 1ce7251a0a6dbde49fff9b802e822ebe41d5e7ae (diff) | |
download | bcm5719-llvm-96bad9a5cd8f2629cd538dab8eaa402839d3442e.tar.gz bcm5719-llvm-96bad9a5cd8f2629cd538dab8eaa402839d3442e.zip |
Implement CodeGenFunction::EmitCXXExprWithTemporariesLValue.
llvm-svn: 81738
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 89e478b64a2..9bdad225ab9 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -813,7 +813,8 @@ public: LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E); LValue EmitCXXConstructLValue(const CXXConstructExpr *E); LValue EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E); - + LValue EmitCXXExprWithTemporariesLValue(const CXXExprWithTemporaries *E); + LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E); LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E); LValue EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E); |