This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
34 lines
763 B
C++
34 lines
763 B
C++
// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
|
|
// rdar://8594790
|
|
|
|
extern "C" {
|
|
extern "C" void *_Block_copy(const void *aBlock);
|
|
extern "C" void _Block_release(const void *aBlock);
|
|
}
|
|
|
|
class A {
|
|
public:
|
|
int x;
|
|
A(const A &o);
|
|
A();
|
|
virtual ~A();
|
|
void hello() const;
|
|
};
|
|
|
|
int
|
|
main()
|
|
{
|
|
A a;
|
|
void (^c)(void) = ((__typeof(^{ a.hello(); }))_Block_copy((const void *)(^{ a.hello(); })));
|
|
c();
|
|
_Block_release((const void *)(c));
|
|
return 0;
|
|
}
|
|
|
|
// CHECK-LABEL: define linkonce_odr hidden void @__copy_helper_block_
|
|
// CHECK: call void @_ZN1AC1ERKS_
|
|
|
|
|
|
// CHECK-LABEL:define linkonce_odr hidden void @__destroy_helper_block_
|
|
// CHECK: call void @_ZN1AD1Ev
|