2014-01-15 03:35:09 +08:00
|
|
|
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - -fblocks | FileCheck %s
|
2010-12-03 01:58:10 +08:00
|
|
|
// rdar://8594790
|
|
|
|
|
|
|
|
struct A {
|
|
|
|
int x;
|
|
|
|
A(const A &);
|
|
|
|
A();
|
|
|
|
~A();
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
__block A BYREF_VAR;
|
|
|
|
^{ BYREF_VAR.x = 1234; };
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define internal void @__Block_byref_object_copy_
|
2011-06-14 06:51:21 +08:00
|
|
|
// CHECK: call {{.*}} @_ZN1AC1ERKS_
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define internal void @__Block_byref_object_dispose_
|
2011-06-14 06:51:21 +08:00
|
|
|
// CHECK: call {{.*}} @_ZN1AD1Ev
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define internal void @__copy_helper_block_
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK: call {{.*}}void @_Block_object_assign
|
2013-08-15 14:47:53 +08:00
|
|
|
// CHECK-LABEL: define internal void @__destroy_helper_block_
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK: call {{.*}}void @_Block_object_dispose
|
2012-04-14 02:44:05 +08:00
|
|
|
|
|
|
|
// rdar://problem/11135650
|
|
|
|
namespace test1 {
|
|
|
|
struct A { int x; A(); ~A(); };
|
|
|
|
|
|
|
|
void test() {
|
|
|
|
return;
|
|
|
|
__block A a;
|
|
|
|
}
|
|
|
|
}
|