blob: 5f1e882d0d2e76a17956c3409fcb5cceab4cf5d6 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fno-constant-cfstrings -fconstant-string-class OFConstantString -emit-llvm -o %t %s
// pr9914
@interface OFConstantString
+ class;
@end
@interface OFString
- (void)XMLElementBySerializing;
@end
@implementation OFString
- (void)XMLElementBySerializing
{
id str = @"object";
[OFConstantString class];
}
@end
// CHECK: @"OBJC_CLASS_$_OFConstantString" = external global
|