This reverts commit d618f1c3b1.
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
22 lines
445 B
Objective-C
22 lines
445 B
Objective-C
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fobjc-exceptions -fblocks -o %t %s
|
|
// rdar://7590273
|
|
|
|
void EXIT(id e);
|
|
|
|
@interface NSBlockOperation {
|
|
}
|
|
+(id)blockOperationWithBlock:(void (^)(void))block ;
|
|
@end
|
|
|
|
void FUNC(void) {
|
|
[NSBlockOperation blockOperationWithBlock:^{
|
|
@try {
|
|
|
|
}
|
|
@catch (id exception) {
|
|
EXIT(exception);
|
|
}
|
|
}];
|
|
|
|
}
|