Home | History | Annotate | Download | only in FrontendObjC
      1 // RUN: %llvmgcc -x objective-c -m64 -S %s -o - | grep {L_unnamed_cfstring_}
      2 
      3 @class NSString;
      4 
      5 @interface A
      6 - (void)bork:(NSString*)msg;
      7 @end
      8 
      9 void func(A *a) {
     10   [a bork:@"Hello world!"];
     11 }
     12