annotate clang/test/CodeGenObjC/2008-11-24-ConstCFStrings.m @ 206:f17a3b42b08b
Added tag before-12 for changeset b7591485f4cd
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Mon, 07 Jun 2021 21:25:57 +0900 (2021-06-07) |
parents |
1d019706d866 |
children |
|
rev |
line source |
150
|
1 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 %s -o - | FileCheck %s
|
|
2
|
|
3 // CHECK: _unnamed_cfstring_
|
|
4
|
|
5 @class NSString;
|
|
6
|
|
7 @interface A
|
|
8 - (void)bork:(NSString*)msg;
|
|
9 @end
|
|
10
|
|
11 void func(A *a) {
|
|
12 [a bork:@"Hello world!"];
|
|
13 }
|