increasingly prevailing case to the point that new features like ARC don't even support the fragile ABI anymore. This required a little bit of reshuffling with exceptions because a check was assuming that ObjCNonFragileABI was only being set in ObjC mode, and that's actually a bit obnoxious to do. Most, though, it involved a perl script to translate a ton of test cases. Mostly no functionality change for driver users, although there are corner cases with disabling language-specific exceptions that we should handle more correctly now. llvm-svn: 140957
59 lines
1.2 KiB
Objective-C
59 lines
1.2 KiB
Objective-C
// REQUIRES: x86-64-registered-target
|
|
// RUN: %clang_cc1 -fno-dwarf2-cfi-asm -triple x86_64-apple-darwin10 -fexceptions -fobjc-exceptions -S -g %s -o - | FileCheck %s
|
|
|
|
//CHECK: "-[InstanceVariablesEverywhereButTheInterface someString]":
|
|
//CHECK: .quad "-[InstanceVariablesEverywhereButTheInterface someString]"
|
|
//CHECK: .ascii "-[InstanceVariablesEverywhereButTheInterface someString]"
|
|
//CHECK: .asciz "-[InstanceVariablesEverywhereButTheInterface someString]"
|
|
//CHECK: "-[InstanceVariablesEverywhereButTheInterface someString].eh":
|
|
|
|
//rdar: //8498026
|
|
|
|
@class NSString;
|
|
|
|
@interface InstanceVariablesEverywhereButTheInterface
|
|
@end
|
|
|
|
@interface InstanceVariablesEverywhereButTheInterface()
|
|
{
|
|
NSString *_someString;
|
|
}
|
|
|
|
@property(readonly) NSString *someString;
|
|
@property(readonly) unsigned long someNumber;
|
|
@end
|
|
|
|
@implementation InstanceVariablesEverywhereButTheInterface
|
|
{
|
|
unsigned long _someNumber;
|
|
}
|
|
|
|
@synthesize someString = _someString, someNumber = _someNumber;
|
|
|
|
- init {
|
|
return self;
|
|
}
|
|
@end
|
|
|
|
@interface AutomaticSynthesis
|
|
{
|
|
int real_ivar;
|
|
}
|
|
@property(copy) NSString *someString;
|
|
@property unsigned long someNumber;
|
|
@end
|
|
|
|
@implementation AutomaticSynthesis
|
|
@synthesize someString;
|
|
@synthesize someNumber;
|
|
- init
|
|
{
|
|
return self;
|
|
}
|
|
@end
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|