]> granicus.if.org Git - clang/commit
Fix a crash-on-valid where a block capture copy expression was
authorJohn McCall <rjmccall@apple.com>
Fri, 22 Mar 2013 02:10:40 +0000 (02:10 +0000)
committerJohn McCall <rjmccall@apple.com>
Fri, 22 Mar 2013 02:10:40 +0000 (02:10 +0000)
commitb760f11fae94e3003b9241ac50c02617465f2fa2
treed0709d70ccbe6150d35452e68660bde46efe7e40
parentbf8487a3c290203ae54fd81d35a94be0ff211235
Fix a crash-on-valid where a block capture copy expression was
picking up cleanups from earlier in the statement.  Also fix a
crash-on-invalid where a reference to an invalid decl from an
enclosing scope was causing an expression to fail to build, but
only *after* a cleanup was registered from that statement,
causing an assertion downstream.

The crash-on-valid is rdar://13459289.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177692 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Sema/Sema.h
lib/Parse/ParseStmt.cpp
lib/Sema/SemaDecl.cpp
lib/Sema/SemaDeclCXX.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaStmt.cpp
test/CodeGenCXX/blocks.cpp
test/SemaCXX/blocks.cpp