commit | 00be6d0ff86a5328c13f3f88171b26097c8ed664 | [log] [tgz] |
---|---|---|
author | Richard Smith <richard-llvm@metafoo.co.uk> | Thu Jun 11 03:05:39 2015 +0000 |
committer | Richard Smith <richard-llvm@metafoo.co.uk> | Thu Jun 11 03:05:39 2015 +0000 |
tree | d302511800ab41e53edcaf85dbbba82b492e00d0 | |
parent | 9321f926b01bfba21fa2524d916b889f280bae8e [diff] [blame] |
[modules] Fix a few places where merging wasn't performed if modules was disabled but local module visibilty was enabled. llvm-svn: 239504
diff --git a/clang/test/Modules/Inputs/submodules-merge-defs/module.modulemap b/clang/test/Modules/Inputs/submodules-merge-defs/module.modulemap index 82abdb0..f8ae60f 100644 --- a/clang/test/Modules/Inputs/submodules-merge-defs/module.modulemap +++ b/clang/test/Modules/Inputs/submodules-merge-defs/module.modulemap
@@ -14,3 +14,8 @@ header "merged-defs.h" use "stuff" } + +module "indirect" { + header "indirect.h" + use "merged-defs" +}