2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / testsuite / objc.dg / image-info.m
blob3ffe81438d420951e031600d4e9d6a5cb3c050d9
1 /* Check if the '-freplace-objc-classes' option causes the
2    __OBJC,__image_info section to be emitted.  This is only
3    usable on MacOS X 10.3 and later. */
4 /* Contributed by Ziemowit Laski <zlaski@apple.com>.  */
5 /* { dg-options "-freplace-objc-classes" } */
6 /* { dg-do compile { target *-*-darwin* } } */
8 #ifndef __NEXT_RUNTIME__
9 #error Feature not currently supported by the GNU runtime
10 #endif
12 #include <objc/objc.h>
13 #include <objc/Object.h>
15 extern void abort(void);
17 #define CHECK_IF(expr) if(!(expr)) abort();
19 @interface Base: Object {
20 @public
21   int a;
22   float b;
23   char c;
25 - init;
26 @end
28 @implementation Base
29 - init {
30   [super init];
31   a = 123;
32   b = 1.23;
33   c = 'c';
34   return self;
36 @end
38 /* { dg-final { scan-assembler "\t.section __OBJC, __image_info.*\n\t.align.*\nL_OBJC_IMAGE_INFO.*:\n\t.long\t0\n\t.long\t1" } } */