mirror of https://github.com/microsoft/clang.git
Remove space from rdar URIs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118474 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bb0ba0bca7
commit
24fce281e3
|
@ -1,3 +1,3 @@
|
||||||
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
// RUN: %clang_cc1 %s -fsyntax-only -verify
|
||||||
// rdar: // 8632525
|
// rdar://8632525
|
||||||
extern id objc_msgSend(id self, SEL op, ...);
|
extern id objc_msgSend(id self, SEL op, ...);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar:// 8191774
|
// rdar://8191774
|
||||||
|
|
||||||
@protocol SomeProtocol
|
@protocol SomeProtocol
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fobjc-nonfragile-abi -verify -fsyntax-only %s
|
// RUN: %clang_cc1 -fobjc-nonfragile-abi -verify -fsyntax-only %s
|
||||||
// rdar : // 8225011
|
// rdar://8225011
|
||||||
|
|
||||||
int glob; // expected-note {{global variable declared here}}
|
int glob; // expected-note {{global variable declared here}}
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ int glob; // expected-note {{global variable declared here}}
|
||||||
@implementation I
|
@implementation I
|
||||||
- (int) Meth { return glob; } // expected-warning {{when default property synthesis is on, 'glob' lookup will access}}
|
- (int) Meth { return glob; } // expected-warning {{when default property synthesis is on, 'glob' lookup will access}}
|
||||||
@synthesize glob;
|
@synthesize glob;
|
||||||
// rdar: // 8248681
|
// rdar://8248681
|
||||||
- (int) Meth1: (int) p {
|
- (int) Meth1: (int) p {
|
||||||
extern int le;
|
extern int le;
|
||||||
int l = 1;
|
int l = 1;
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
|
|
||||||
@implementation SubClass @end
|
@implementation SubClass @end
|
||||||
|
|
||||||
// rdar: // 7920807
|
// rdar://7920807
|
||||||
@interface C @end
|
@interface C @end
|
||||||
@interface C (Category)
|
@interface C (Category)
|
||||||
@property int p; // expected-warning {{property 'p' requires method 'p' to be defined }} \
|
@property int p; // expected-warning {{property 'p' requires method 'p' to be defined }} \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s
|
||||||
// rdar: // 8308053
|
// rdar://8308053
|
||||||
|
|
||||||
@interface I {
|
@interface I {
|
||||||
__attribute__((iboutletcollection(I))) id ivar1;
|
__attribute__((iboutletcollection(I))) id ivar1;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar:// 6812436
|
// rdar://6812436
|
||||||
|
|
||||||
@interface A @end
|
@interface A @end
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
- (void) foo11 : (int)x, ... __attribute__ ((__sentinel__(1,1,3))); // expected-error {{attribute requires 0, 1 or 2 argument(s)}}
|
- (void) foo11 : (int)x, ... __attribute__ ((__sentinel__(1,1,3))); // expected-error {{attribute requires 0, 1 or 2 argument(s)}}
|
||||||
- (void) foo12 : (int)x, ... ATTR; // expected-note {{method has been explicitly marked sentinel here}}
|
- (void) foo12 : (int)x, ... ATTR; // expected-note {{method has been explicitly marked sentinel here}}
|
||||||
|
|
||||||
// rdar:// 7975788
|
// rdar://7975788
|
||||||
- (id) foo13 : (id)firstObj, ... __attribute__((sentinel(0,1)));
|
- (id) foo13 : (id)firstObj, ... __attribute__((sentinel(0,1)));
|
||||||
- (id) foo14 : (id)firstObj : (Class)secondObj, ... __attribute__((sentinel(0,1)));
|
- (id) foo14 : (id)firstObj : (Class)secondObj, ... __attribute__((sentinel(0,1)));
|
||||||
- (id) foo15 : (id*)firstObj, ... __attribute__((sentinel(0,1)));
|
- (id) foo15 : (id*)firstObj, ... __attribute__((sentinel(0,1)));
|
||||||
|
@ -40,7 +40,7 @@ int main ()
|
||||||
|
|
||||||
[p foo12:1]; // expected-warning {{not enough variable arguments in 'foo12:' declaration to fit a sentinel}}
|
[p foo12:1]; // expected-warning {{not enough variable arguments in 'foo12:' declaration to fit a sentinel}}
|
||||||
|
|
||||||
// rdar:// 7975788
|
// rdar://7975788
|
||||||
[ p foo13 : NULL];
|
[ p foo13 : NULL];
|
||||||
[ p foo14 : 0 : NULL];
|
[ p foo14 : 0 : NULL];
|
||||||
[ p foo16 : NULL];
|
[ p foo16 : NULL];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar: // 7766184
|
// rdar://7766184
|
||||||
|
|
||||||
@interface Foo @end
|
@interface Foo @end
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar: //8528170
|
// rdar://8528170
|
||||||
|
|
||||||
@interface NSObject @end
|
@interface NSObject @end
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar: // 7884086
|
// rdar://7884086
|
||||||
|
|
||||||
@interface NSObject @end
|
@interface NSObject @end
|
||||||
|
|
||||||
|
|
|
@ -12,5 +12,5 @@
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
|
||||||
// rdar: // 7823675
|
// rdar://7823675
|
||||||
int f0(I *a) { return a->IP; } // expected-error {{instance variable 'IP' is protected}}
|
int f0(I *a) { return a->IP; } // expected-error {{instance variable 'IP' is protected}}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
||||||
// rdar 7634850
|
// rdar://7634850
|
||||||
|
|
||||||
@interface Foo
|
@interface Foo
|
||||||
- (void)foo:(Class)class; // expected-note{{passing argument to parameter 'class' here}}
|
- (void)foo:(Class)class; // expected-note{{passing argument to parameter 'class' here}}
|
||||||
|
|
Loading…
Reference in New Issue