diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-04-06 23:43:32 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-04-06 23:43:32 +0000 |
commit | 54d569c51d2343eb71186b3545a1d2b1855b6718 (patch) | |
tree | c7060a5902a9257f5a03f172dde25cdce756f39c /clang/test | |
parent | c4c9ed0f9bdfcb60df55bcc0f06ac14ec28d9ffc (diff) | |
download | bcm5719-llvm-54d569c51d2343eb71186b3545a1d2b1855b6718.tar.gz bcm5719-llvm-54d569c51d2343eb71186b3545a1d2b1855b6718.zip |
Warn instead of error on duplicate protocol definitions.
Be kind to so many projects which are doing this (and be
like gcc).
llvm-svn: 68474
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/SemaObjC/check-dup-objc-decls-1.m | 2 | ||||
-rw-r--r-- | clang/test/SemaObjC/protocol-test-2.m | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/check-dup-objc-decls-1.m b/clang/test/SemaObjC/check-dup-objc-decls-1.m index 4181ac097b4..dc9c8f44261 100644 --- a/clang/test/SemaObjC/check-dup-objc-decls-1.m +++ b/clang/test/SemaObjC/check-dup-objc-decls-1.m @@ -33,7 +33,7 @@ void Gorf() // expected-error {{redefinition of 'Gorf' as different kind of symb @interface A<Q> @end // expected-error {{duplicate interface definition for class 'A'}} @protocol PP<P> @end // expected-note {{previous definition is here}} -@protocol PP<Q> @end // expected-error {{duplicate protocol definition of 'PP'}} +@protocol PP<Q> @end // expected-warning {{duplicate protocol definition of 'PP'}} @interface A(Cat)<P> @end // expected-note {{previous definition is here}} @interface A(Cat)<Q> @end // expected-warning {{duplicate definition of category 'Cat' on interface 'A'}} diff --git a/clang/test/SemaObjC/protocol-test-2.m b/clang/test/SemaObjC/protocol-test-2.m index a882809f1c7..3abb9b59351 100644 --- a/clang/test/SemaObjC/protocol-test-2.m +++ b/clang/test/SemaObjC/protocol-test-2.m @@ -18,7 +18,7 @@ @protocol PROTO<p1> // expected-note {{previous definition is here}} @end -@protocol PROTO<p1> // expected-error {{duplicate protocol definition of 'PROTO'}} +@protocol PROTO<p1> // expected-warning {{duplicate protocol definition of 'PROTO'}} @end @protocol PROTO3<p1, p1> |