diff options
author | Anders Carlsson <andersca@mac.com> | 2009-05-27 04:18:27 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-05-27 04:18:27 +0000 |
commit | 0f294632f36459174199b77699e339715244b5ab (patch) | |
tree | c69f7330225b7a4d202d56e27bc9f62289b7d348 /lib/CodeGen/CodeGenFunction.h | |
parent | e9f2f45fe9bf79bd4aea47fa1ad9204b68510fd9 (diff) |
Handle operator call expressions where the callee is a member function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 28c557c156..7d13071ece 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -686,6 +686,9 @@ public: CallExpr::const_arg_iterator ArgEnd); RValue EmitCXXMemberCallExpr(const CXXMemberCallExpr *E); + RValue EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E, + const CXXMethodDecl *MD); + RValue EmitBuiltinExpr(const FunctionDecl *FD, unsigned BuiltinID, const CallExpr *E); |