diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-11 22:41:53 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-01-11 22:41:53 +0000 |
| commit | 38c202e97e51de7d4f2b523e15fa56c8c1a494cd (patch) | |
| tree | 69d2c3e45dc2aaa5dadbd442df4ab2e8cb966b33 /clang/test | |
| parent | 0fb7ed5726f1470f6e117f72ed629fad74862187 (diff) | |
| download | bcm5719-llvm-38c202e97e51de7d4f2b523e15fa56c8c1a494cd.tar.gz bcm5719-llvm-38c202e97e51de7d4f2b523e15fa56c8c1a494cd.zip | |
When a tag is declared in prototype scope in C, if we've decided that it
redeclares an existing tag but are creating a new declaration anyway (because
it has attributes or changes the visibility of the name), don't warn that it
won't be visible outside the current scope. That's not true.
Also narrow down the set of cases where we create these extra declarations when
building modules; previously, all tag declarations but the first in a module
header would get this treatment if -fmodules-local-submodule-visibility. (This
isn't a functional change, but we try to avoid creating these extra
declarations whenever we can.)
llvm-svn: 257403
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/Modules/tag-injection.c | 18 | ||||
| -rw-r--r-- | clang/test/Sema/decl-in-prototype.c | 3 |
2 files changed, 21 insertions, 0 deletions
diff --git a/clang/test/Modules/tag-injection.c b/clang/test/Modules/tag-injection.c new file mode 100644 index 00000000000..5bb15477e2e --- /dev/null +++ b/clang/test/Modules/tag-injection.c @@ -0,0 +1,18 @@ +// RUN: rm -rf %t +// RUN: mkdir %t +// RUN: echo 'struct a;' > %t/a.h +// RUN: echo 'struct b {}; void foo(struct b*);' > %t/b.h +// RUN: echo 'module X { module a { header "a.h" } module b { header "b.h" } }' > %t/x.modulemap +// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -fmodule-map-file=%t/x.modulemap %s -I%t -verify + +#include "a.h" + +void f(struct a *p); + +// FIXME: We should warn that 'b' will not be visible outside of this function, +// but we merge this 'b' with X.b's 'b' because we don't yet implement C's +// "compatible types" rule. +void g(struct b *p); + +struct b b; // expected-error {{definition of 'b' must be imported from module 'X.b' before it is required}} +// expected-note@b.h:1 {{here}} diff --git a/clang/test/Sema/decl-in-prototype.c b/clang/test/Sema/decl-in-prototype.c index 4f581aa54e5..3b8a3b86037 100644 --- a/clang/test/Sema/decl-in-prototype.c +++ b/clang/test/Sema/decl-in-prototype.c @@ -35,3 +35,6 @@ void f6(struct z {int b;} c) { // expected-warning {{declaration of 'struct z' w void pr19018_1 (enum e19018 { qq } x); // expected-warning{{declaration of 'enum e19018' will not be visible outside of this function}} enum e19018 qq; //expected-error{{tentative definition has type 'enum e19018' that is never completed}} \ //expected-note{{forward declaration of 'enum e19018'}} + +// Only warn once, even if we create two declarations. +void f(struct q *, struct __attribute__((aligned(4))) q *); // expected-warning {{will not be visible outside}} |

