blob: 7500ae3728caf79bd5c3ac3e9d4f71c455591e31 [file] [log] [blame]
/* APPLE LOCAL file radar 5082000 */
/* Test of ivar layour involving large array ivar. */
/* { dg-do compile { target *-*-darwin* } } */
typedef struct _NSAttributeDictionaryElement {
unsigned int hash;
unsigned key;
unsigned value;
} NSAttributeDictionaryElement;
__attribute__((objc_root_class)) @interface NSTableOptions {
unsigned numElements;
unsigned refCount;
NSAttributeDictionaryElement elements[1024];
}
@end
@implementation NSTableOptions
@end