diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-10-13 23:04:14 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2016-10-13 23:04:14 +0000 |
| commit | b50df911788541fb5e17fe7cf3ce25330101a53a (patch) | |
| tree | 5dfbd3ed0b7015b114563b7e54ae820b75cbfd36 /clang/test/Modules/Inputs/merge-var-template-def/module.modulemap | |
| parent | 7705c4f1be36d8c3384f71b71fdd6751a49d7a70 (diff) | |
| download | bcm5719-llvm-b50df911788541fb5e17fe7cf3ce25330101a53a.tar.gz bcm5719-llvm-b50df911788541fb5e17fe7cf3ce25330101a53a.zip | |
Reinstate r281429, reverted in r281452, with a fix for its mishandling of
compiles without -fmodules-local-submodule-visibility. Original commit message:
[modules] When merging one definition into another, propagate the list of
re-exporting modules from the discarded definition to the retained definition.
llvm-svn: 284176
Diffstat (limited to 'clang/test/Modules/Inputs/merge-var-template-def/module.modulemap')
| -rw-r--r-- | clang/test/Modules/Inputs/merge-var-template-def/module.modulemap | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/merge-var-template-def/module.modulemap b/clang/test/Modules/Inputs/merge-var-template-def/module.modulemap new file mode 100644 index 00000000000..b2c96bd8217 --- /dev/null +++ b/clang/test/Modules/Inputs/merge-var-template-def/module.modulemap @@ -0,0 +1,5 @@ +module a { header "a.h" export * } +module b { + module b1 { header "b1.h" export * } + module b2 { header "b2.h" export * } +} |

