blob: 913c32c4a27a7030cfe845e8d60f36df9221bfe1 [file] [log] [blame]
/* APPLE LOCAL file 5938756 */
/* This code caused an ICE */
/* { dg-do compile } */
/* { dg-options "-gdwarf-2 -Os" } */
@class NSException;
struct empty {
};
@interface PC {
}
@end
@implementation PC
- (id) fn {
signed char isSet = 0;
struct empty sb;
if (isSet) {
@try { }
@catch (NSException *localException) { }
}
}
@end