Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / objc.dg / image-info.m
blob0a740fa31f1f75371051e1c1107ae6b1e4b06780
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>.  */
6 /* { dg-do compile { target { *-*-darwin* } } } */
7 /* { dg-options "-freplace-objc-classes" } */
9 #include "../objc-obj-c++-shared/Object1.h"
10 #include <objc/objc.h>
12 extern void abort(void);
14 #define CHECK_IF(expr) if(!(expr)) abort();
16 @interface Base: Object {
17 @public
18   int a;
19   float b;
20   char c;
22 - init;
23 @end
25 @implementation Base
26 - init {
27   [super init];
28   a = 123;
29   b = 1.23;
30   c = 'c';
31   return self;
33 @end
35 /* { dg-final { scan-assembler "\t.section __OBJC, __image_info.*\n\t.align.*\nL_OBJC_IMAGE_INFO.*:\n\t.long\t0\n\t.long\t1" } } */