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" } */
8 const struct Cxx *next;
12 const struct Cxx *obj;
14 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d;
18 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d {
24 /* { dg-final { scan-assembler "@\[0-9\]+@0:\[0-9\]+\\^{Cxx=\\^{Cxx}}\[0-9\]+r\\^{Cxx=\\^{Cxx}}" } } */