diff options
4 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/exportas-link/OtherKit.framework/Headers/OtherKit.h b/clang/test/Modules/Inputs/exportas-link/OtherKit.framework/Headers/OtherKit.h index 18f0bd555d6..f62c082d64d 100644 --- a/clang/test/Modules/Inputs/exportas-link/OtherKit.framework/Headers/OtherKit.h +++ b/clang/test/Modules/Inputs/exportas-link/OtherKit.framework/Headers/OtherKit.h @@ -1,3 +1,4 @@ +// Umbrella header for OtherKit. #import <SomeKitCore/SomeKitCore.h> #ifdef F diff --git a/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SKWidget.h b/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SKWidget.h index dd99ff7ed2f..60473720f91 100644 --- a/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SKWidget.h +++ b/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SKWidget.h @@ -1 +1,2 @@ +// Delegate to SomeKitCore. #import <SomeKitCore/SKWidget.h> diff --git a/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SomeKit.h b/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SomeKit.h index 17a4cc83fdf..15e96a7554c 100644 --- a/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SomeKit.h +++ b/clang/test/Modules/Inputs/exportas-link/SomeKit.framework/Headers/SomeKit.h @@ -1 +1,6 @@ +// Umbrella header for SomeKit. +// +// Note that this file's content must not end up to coincidentally be identical +// to any other file in the test which can easily happen given the reduced +// test. #import <SomeKit/SKWidget.h> diff --git a/clang/test/Modules/Inputs/exportas-link/SomeKitCore.framework/Headers/SomeKitCore.h b/clang/test/Modules/Inputs/exportas-link/SomeKitCore.framework/Headers/SomeKitCore.h index dd99ff7ed2f..f18aa97d421 100644 --- a/clang/test/Modules/Inputs/exportas-link/SomeKitCore.framework/Headers/SomeKitCore.h +++ b/clang/test/Modules/Inputs/exportas-link/SomeKitCore.framework/Headers/SomeKitCore.h @@ -1 +1,6 @@ +// Umbrella header for SomeKitCore. +// +// Note that this file's content must not end up to coincidentally be identical +// to any other file in the test which can easily happen given the reduced +// test. #import <SomeKitCore/SKWidget.h> |