diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-07-01 02:29:35 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-07-01 02:29:35 +0000 |
commit | 2aedca340c84eafdc7285eb68145e55213324185 (patch) | |
tree | a5f7498611c5aa78996d2f9cad700e04aa8f93a0 /clang/test/Modules/Inputs/submodule-visibility/module.modulemap | |
parent | 8fabc1b47d0237f363c1a34dc5de744973c74891 (diff) | |
download | bcm5719-llvm-2aedca340c84eafdc7285eb68145e55213324185.tar.gz bcm5719-llvm-2aedca340c84eafdc7285eb68145e55213324185.zip |
[modules] Before checking whether the controlling macro of a header is defined,
update the identifier in case we've imported a definition of the macro (and
thus the contents of the header) from a module.
Also fold ExternalIdentifierLookup into ExternalPreprocessorSource; it no longer
makes sense to keep these separate now that the only user of the former also
needs the latter.
llvm-svn: 241137
Diffstat (limited to 'clang/test/Modules/Inputs/submodule-visibility/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/submodule-visibility/module.modulemap | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/submodule-visibility/module.modulemap b/clang/test/Modules/Inputs/submodule-visibility/module.modulemap index 2e13344dc63..d2f0c7783ff 100644 --- a/clang/test/Modules/Inputs/submodule-visibility/module.modulemap +++ b/clang/test/Modules/Inputs/submodule-visibility/module.modulemap @@ -1,4 +1,5 @@ module x { module a { header "a.h" } module b { header "b.h" } } +module other { header "other.h" } module cycles { module cycle1 { header "cycle1.h" } |