diff options
author | John McCall <rjmccall@apple.com> | 2011-04-28 02:15:35 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-04-28 02:15:35 +0000 |
commit | a85af56e66b90ae287f8c6d7aa6a11af0887d71d (patch) | |
tree | a28e143904944ae6fc02425794ece42040c3cbe1 /clang/test/CodeGenCXX/blocks.cpp | |
parent | d35222283949b883a407dba843bd1f9ae7f21002 (diff) | |
download | bcm5719-llvm-a85af56e66b90ae287f8c6d7aa6a11af0887d71d.tar.gz bcm5719-llvm-a85af56e66b90ae287f8c6d7aa6a11af0887d71d.zip |
When block-capturing a variable with a non-trivial destructor,
make sure to mark the destructor. This normally isn't required,
because the destructor should have been marked as part of the
declaration of the local, but it's necessary when the variable
is a parameter because it's the call sites that are responsible
for those destructors.
llvm-svn: 130372
Diffstat (limited to 'clang/test/CodeGenCXX/blocks.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/blocks.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/blocks.cpp b/clang/test/CodeGenCXX/blocks.cpp index d66debea2b9..a4d5b86565e 100644 --- a/clang/test/CodeGenCXX/blocks.cpp +++ b/clang/test/CodeGenCXX/blocks.cpp @@ -87,3 +87,20 @@ namespace test2 { // CHECK: define internal void @__Block_byref_object_dispose // CHECK: call void @_ZN5test21BD1Ev( } + +// rdar://problem/9334739 +// Make sure we mark destructors for parameters captured in blocks. +namespace test3 { + struct A { + A(const A&); + ~A(); + }; + + struct B : A { + }; + + void test(B b) { + extern void consume(void(^)()); + consume(^{ (void) b; }); + } +} |