2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / encode-1.mm
blob5f5ba20139efef1618e1970d90adaa4f01444ef6
1 /* Test for graceful encoding of const-qualified fields and parameters.  */
2 /* Author: Ziemowit Laski  <zlaski@apple.com>  */
4 /* { dg-do compile } */
5 /* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
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\]+r\\^{Cxx=\\^r{Cxx}}\[0-9\]+\\^r{Cxx}" } } */