increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
31 lines
602 B
Objective-C
31 lines
602 B
Objective-C
// REQUIRES: x86-64-registered-target
|
|
// RUN: %clang_cc1 -masm-verbose -S -fblocks -g -triple x86_64-apple-darwin10 -fobjc-fragile-abi %s -o - | FileCheck %s
|
|
extern void foo(void(^)(void));
|
|
|
|
// CHECK: .ascii "__destroy_helper_block_" ## DW_AT_name
|
|
|
|
@interface NSObject {
|
|
struct objc_object *isa;
|
|
}
|
|
@end
|
|
|
|
@interface A:NSObject @end
|
|
@implementation A
|
|
- (void) helper {
|
|
int master = 0;
|
|
__block int m2 = 0;
|
|
__block int dbTransaction = 0;
|
|
int (^x)(void) = ^(void) { (void) self;
|
|
(void) master;
|
|
(void) dbTransaction;
|
|
m2++;
|
|
return m2;
|
|
|
|
};
|
|
master = x();
|
|
}
|
|
@end
|
|
|
|
void foo(void(^x)(void)) {}
|
|
|