OSDN Git Service

PR target/57264
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / obj-c++.dg / encode-1.mm
1 /* Test for graceful encoding of const-qualified fields and parameters.  */
2 /* Author: Ziemowit Laski  <zlaski@apple.com>  */
3
4 /* { dg-do compile } */
5 /* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
6
7 struct Cxx {
8   const struct Cxx *next;
9 };
10
11 @interface ObjC {
12   const struct Cxx *obj;
13 }
14 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d;
15 @end
16
17 @implementation ObjC
18 - (ObjC *)initWithCxx: (struct Cxx *const)c and: (const struct Cxx *)d {
19   obj = d;
20   return self;
21 }
22 @end 
23
24 /* { dg-final { scan-assembler "@\[0-9\]+@0:\[0-9\]+r\\^{Cxx=\\^r{Cxx}}\[0-9\]+\\^r{Cxx}" } } */