URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [const-str-9.m] - Rev 154
Compare with Previous | Blame | View Log
/* Test if ObjC constant strings get placed in the correct section. */ /* Contributed by Ziemowit Laski <zlaski@apple.com> */ /* { dg-options "-fnext-runtime" } */ /* { dg-do compile { target *-*-darwin* } } */ #include <objc/Object.h> @interface NSConstantString: Object { char *cString; unsigned int len; } @end extern struct objc_class _NSConstantStringClassReference; static const NSConstantString *appKey = @"MyApp"; /* { dg-final { scan-assembler ".section __OBJC, __cstring_object" } } */ /* { dg-final { scan-assembler ".long\t__NSConstantStringClassReference\n\t.long\t.*\n\t.long\t5\n\t.data" } } */