blob: 53eec2ab050089c4e34e9dae0ec1b4d7f94db023 [file] [log] [blame]
John McCall260611a2012-06-20 06:18:46 +00001// RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 %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}