Files
rk35xx-android14/external/clang/test/CodeGenObjC/blocks-5.m
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

38 lines
891 B
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fblocks -o %t %s
// rdar: // 8064140
@interface IDEWorkspaceDocument
{
id _defaultEditorStateTree;
}
- (void)enumerateKeysAndObjectsUsingBlock:(void (^)(id key, id obj, unsigned char *stop))block ;
@end
int foo();
extern void DVT (volatile const void * object, volatile const void * selector, const char * functionName);
@implementation IDEWorkspaceDocument
- (void)stateSavingDefaultEditorStatesForURLs {
[_defaultEditorStateTree enumerateKeysAndObjectsUsingBlock:^(id identifier, id urlsToEditorStates, unsigned char *stop) {
do{
if (foo() )
DVT(&self,&_cmd,__PRETTY_FUNCTION__);
}while(0);
do{
DVT(&self,&_cmd,__PRETTY_FUNCTION__);
}while(0);
}];
}
- (void)enumerateKeysAndObjectsUsingBlock:(void (^)(id key, id obj, unsigned char *stop))block {}
@end