This repository was archived by the owner on May 28, 2025. It is now read-only.

Description
Using the latest pre-release 0.2.180221-dev-20180516000001 there is an issue with clang hanging when building some files using the optimisation flag -Os.
I've been able to reproduce the issue with the following code:
id block = ^(NSString *collection, NSString *key, NSData *data) {
id object = nil;
@try {
object = [NSKeyedUnarchiver unarchiveObjectWithData:data];
} @catch (NSException *exception) {
}
};