blob: 5db6144d17c0ec8962945885e28e9b120f0998e6 [file] [log] [blame]
/* APPLE LOCAL file radar 5082000 */
/* Test of ivar layour involving array ivars. */
/* { dg-do run { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-mmacosx-version-min=10.5 -framework Foundation -fobjc-gc" } */
/* { dg-require-effective-target objc_gc } */
#include <objc/runtime.h>
#include <Foundation/Foundation.h>
typedef struct _NSAttributeDictionaryElement {
NSUInteger hash;
id key;
id value;
} NSAttributeDictionaryElement;
@interface NSTableOptions : NSObject {
NSUInteger numElements;
NSUInteger refCount;
NSAttributeDictionaryElement elements[2][3][1];
}
@end
@implementation NSTableOptions
@end
const char expected_strong [] = {0x01, 0x32, 0x12, 0x12, 0x12, 0x12, 0x12, 0};
int main()
{
int i = 0;
const char *ivar_layout_string = (const char*)class_getIvarLayout([NSTableOptions class]);
if (strcmp (ivar_layout_string, expected_strong))
abort ();
return 0;
}