diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-02-16 01:37:33 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-02-16 01:37:33 +0000 |
commit | bd89f8c2caa9550e41daa1aa9bf30f0f1e0dfaf7 (patch) | |
tree | a7af0cf81ee56d0cac84f420e553c6caf49ed69e /lib/CodeGen/CGClass.cpp | |
parent | 3973accabc855b81b55bcc1945a98b2adb2ce72a (diff) |
Start of IRGen for lambda conversion operators.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGClass.cpp')
-rw-r--r-- | lib/CodeGen/CGClass.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/CodeGen/CGClass.cpp b/lib/CodeGen/CGClass.cpp index 38fdb344ff..b1096d267b 100644 --- a/lib/CodeGen/CGClass.cpp +++ b/lib/CodeGen/CGClass.cpp @@ -1720,3 +1720,11 @@ CodeGenFunction::EmitCXXOperatorMemberCallee(const CXXOperatorCallExpr *E, return CGM.GetAddrOfFunction(MD, Ty); } + +void CodeGenFunction::EmitLambdaToBlockPointerBody(FunctionArgList &Args) { + CGM.ErrorUnsupported(CurFuncDecl, "lambda conversion to block"); +} + +void CodeGenFunction::EmitLambdaToFunctionPointerBody(FunctionArgList &Args) { + CGM.ErrorUnsupported(CurFuncDecl, "lambda conversion to function"); +} |