testsuite: skip attr-retain-?.c on AIX
[official-gcc.git] / gcc / testsuite / objc.dg / encode-6-next.m
blob18ee15db446c331f29adea644a21cff1753a7917
1 /* Test for graceful encoding of const-qualified fields and parameters.  */
2 /* Author: Ziemowit Laski  <zlaski@apple.com>  */
3 /* { dg-do compile } */
4 /* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
5 /* { dg-additional-options "-Wno-objc-root-class" } */
7 struct Cxx {
8   const struct Cxx *next;
9 };
11 @interface ObjC {
12   const struct Cxx *obj;
14 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d;
15 @end
17 @implementation ObjC
18 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d {
19   obj = d;
20   return self;
22 @end 
24 /* { dg-final { scan-assembler "@\[0-9\]+@0:\[0-9\]+\\^{Cxx=\\^{Cxx}}\[0-9\]+r\\^{Cxx=\\^{Cxx}}" } } */