diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-03-18 01:42:29 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-03-18 01:42:29 +0000 |
commit | 7f330cdb31a4221be501d5d969f2e8a62f457e14 (patch) | |
tree | 2786520a130f64d0284b5ba00c2478ab7310aafd /clang/test/Modules/Inputs/explicit-build/module.modulemap | |
parent | 59aca1970828616abecb5691e6f956a94b7b494b (diff) | |
download | bcm5719-llvm-7f330cdb31a4221be501d5d969f2e8a62f457e14.tar.gz bcm5719-llvm-7f330cdb31a4221be501d5d969f2e8a62f457e14.zip |
Make module files passed to a module build via -fmodule-file= available to
consumers of that module.
Previously, such a file would only be available if the module happened to
actually import something from that module.
llvm-svn: 232583
Diffstat (limited to 'clang/test/Modules/Inputs/explicit-build/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/explicit-build/module.modulemap | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/explicit-build/module.modulemap b/clang/test/Modules/Inputs/explicit-build/module.modulemap index bd6ea830c2d..992eed68358 100644 --- a/clang/test/Modules/Inputs/explicit-build/module.modulemap +++ b/clang/test/Modules/Inputs/explicit-build/module.modulemap @@ -1,3 +1,4 @@ module a { header "a.h" } module b { header "b.h" export * } module c { header "c.h" export * } +module d { header "d.h" } |