[cfe-commits] r57053 - /cfe/trunk/Driver/RewriteBlocks.cpp
Steve Naroff
snaroff at apple.com
Sat Oct 4 10:10:02 PDT 2008
Author: snaroff
Date: Sat Oct 4 12:10:02 2008
New Revision: 57053
URL: http://llvm.org/viewvc/llvm-project?rev=57053&view=rev
Log:
Clear the map that associated the rewritten block with it's corresponding BlockExpr.
Modified:
cfe/trunk/Driver/RewriteBlocks.cpp
Modified: cfe/trunk/Driver/RewriteBlocks.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Driver/RewriteBlocks.cpp?rev=57053&r1=57052&r2=57053&view=diff
==============================================================================
--- cfe/trunk/Driver/RewriteBlocks.cpp (original)
+++ cfe/trunk/Driver/RewriteBlocks.cpp Sat Oct 4 12:10:02 2008
@@ -605,6 +605,7 @@
ImportedBlockDecls.clear();
}
Blocks.clear();
+ RewrittenBlockExprs.clear();
}
void RewriteBlocks::InsertBlockLiteralsWithinFunction(FunctionDecl *FD) {
More information about the cfe-commits
mailing list