diff options
Diffstat (limited to 'clang/test/Modules')
-rw-r--r-- | clang/test/Modules/Inputs/elaborated-type-structs.h | 3 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/module.map | 7 | ||||
-rw-r--r-- | clang/test/Modules/elaborated-type-specifier-from-hidden-module.m | 18 |
3 files changed, 0 insertions, 28 deletions
diff --git a/clang/test/Modules/Inputs/elaborated-type-structs.h b/clang/test/Modules/Inputs/elaborated-type-structs.h deleted file mode 100644 index da3940998fd..00000000000 --- a/clang/test/Modules/Inputs/elaborated-type-structs.h +++ /dev/null @@ -1,3 +0,0 @@ -struct S1; -struct S2 { int x; }; -struct S3 { int x; }; diff --git a/clang/test/Modules/Inputs/module.map b/clang/test/Modules/Inputs/module.map index 632517dd363..226d45fdf44 100644 --- a/clang/test/Modules/Inputs/module.map +++ b/clang/test/Modules/Inputs/module.map @@ -386,10 +386,3 @@ module TypedefTag { header "typedef-tag-hidden.h" } } - -module ElaboratedTypeStructs { - module Empty {} - module Structs { - header "elaborated-type-structs.h" - } -} diff --git a/clang/test/Modules/elaborated-type-specifier-from-hidden-module.m b/clang/test/Modules/elaborated-type-specifier-from-hidden-module.m deleted file mode 100644 index 0ca1c24bba0..00000000000 --- a/clang/test/Modules/elaborated-type-specifier-from-hidden-module.m +++ /dev/null @@ -1,18 +0,0 @@ -// RUN: rm -rf %t -// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -I %S/Inputs %s -verify - -@import ElaboratedTypeStructs.Empty; // The structs are now hidden. -struct S1 *x; -struct S2 *y; -// FIXME: compatible definition should not be an error. -struct S2 { int x; }; // expected-error {{redefinition}} -struct S3 *z; -// Incompatible definition. -struct S3 { float y; }; // expected-error {{redefinition}} -// expected-note@elaborated-type-structs.h:* 2 {{previous definition is here}} - -@import ElaboratedTypeStructs.Structs; - -void useS1(struct S1 *x); -void useS2(struct S2 *x); -void useS2(struct S2 *x); |