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
38 lines
895 B
Objective-C
38 lines
895 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(void);
|
|
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
|