blob: b37f66c29707338ddeca632bb2cac55c36b182a7 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-fragile-abi %s -o - | FileCheck %s
Eric Christopher7bc54e52011-08-20 00:37:56 +00002
3// CHECK: _unnamed_cfstring_
4
5@class NSString;
6
7@interface A
8- (void)bork:(NSString*)msg;
9@end
10
11void func(A *a) {
12 [a bork:@"Hello world!"];
13}