diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2012-02-25 02:48:22 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2012-02-25 02:48:22 +0000 |
commit | 2495ab08fc79d42a3a7ee0200b6592cb80501056 (patch) | |
tree | 3a85207da44821e86ba5b90ae93db870d322bdd6 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 335c5a42e9cfa70436bce30a6867cb722cac339c (diff) | |
download | bcm5719-llvm-2495ab08fc79d42a3a7ee0200b6592cb80501056.tar.gz bcm5719-llvm-2495ab08fc79d42a3a7ee0200b6592cb80501056.zip |
Work-in-progress for lambda conversion-to-block operator. Still need to implement the retain+autorelease outside of ARC, and there's a bug that causes the generated code to crash in ARC (which I think is unrelated to my code, although I'm not completely sure).
llvm-svn: 151428
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 47176bd8ecc..5d18169695b 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -32,7 +32,8 @@ CodeGenFunction::CodeGenFunction(CodeGenModule &cgm) Target(CGM.getContext().getTargetInfo()), Builder(cgm.getModule().getContext()), AutoreleaseResult(false), BlockInfo(0), BlockPointer(0), - LambdaThisCaptureField(0), NormalCleanupDest(0), NextCleanupDestIndex(1), + LambdaThisCaptureField(0), InLambdaConversionToBlock(false), + NormalCleanupDest(0), NextCleanupDestIndex(1), FirstBlockInfo(0), EHResumeBlock(0), ExceptionSlot(0), EHSelectorSlot(0), DebugInfo(0), DisableDebugInfo(false), DidCallStackSave(false), IndirectBranch(0), SwitchInsn(0), CaseRangeBlock(0), UnreachableBlock(0), |