blob: 3b7ec7ad51f5c38aa82e87dd36ee2cbc3e0d63f1 [file] [log] [blame]
/* Test if ObjC constant string layout is checked properly, regardless of how
constant string classes get derived. */
/* Contributed by Ziemowit Laski <zlaski@apple.com> */
/* { dg-options "-fnext-runtime -fconstant-string-class=XStr" } */
/* { dg-do compile { target *-*-darwin* } } */
#include <objc/Object.h>
@interface XString: Object {
@protected
char *bytes;
}
@end
@interface XStr : XString {
@public
unsigned int len;
}
@end
extern struct objc_class _XStrClassReference;
const XStr *appKey = @"MyApp";
/* { dg-final { scan-assembler ".section __OBJC, __cstring_object" } } */
/* { dg-final { scan-assembler ".long\t__XStrClassReference\n\t.long\t.*\n\t.long\t5\n\t.data" } } */