diff options
| author | Douglas Gregor <dgregor@apple.com> | 2011-11-12 00:05:07 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2011-11-12 00:05:07 +0000 |
| commit | af28ec80a3eca91477c41455b6c0fa318e4ab14f (patch) | |
| tree | 2cf14ab33bcab901ceb8a0f2a116fb1ede5a1637 /clang/test/Modules/Inputs/normal-module-map | |
| parent | 13477156448b86f0d3ea4ed4b7ca66dfcc22ef9c (diff) | |
| download | bcm5719-llvm-af28ec80a3eca91477c41455b6c0fa318e4ab14f.tar.gz bcm5719-llvm-af28ec80a3eca91477c41455b6c0fa318e4ab14f.zip | |
When searching for a module, speculatively load module maps to see if
the module is described in one of the module maps in a search path or
in a subdirectory off the search path that has the same name as the
module we're looking for.
llvm-svn: 144433
Diffstat (limited to 'clang/test/Modules/Inputs/normal-module-map')
| -rw-r--r-- | clang/test/Modules/Inputs/normal-module-map/Umbrella2/Umbrella2.h | 1 | ||||
| -rw-r--r-- | clang/test/Modules/Inputs/normal-module-map/Umbrella2/module.map | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/normal-module-map/Umbrella2/Umbrella2.h b/clang/test/Modules/Inputs/normal-module-map/Umbrella2/Umbrella2.h new file mode 100644 index 00000000000..36110d8d009 --- /dev/null +++ b/clang/test/Modules/Inputs/normal-module-map/Umbrella2/Umbrella2.h @@ -0,0 +1 @@ +int umbrella2; diff --git a/clang/test/Modules/Inputs/normal-module-map/Umbrella2/module.map b/clang/test/Modules/Inputs/normal-module-map/Umbrella2/module.map new file mode 100644 index 00000000000..7c6c3f42aa9 --- /dev/null +++ b/clang/test/Modules/Inputs/normal-module-map/Umbrella2/module.map @@ -0,0 +1,3 @@ +module Umbrella2 { + umbrella "Umbrella2.h" +}
\ No newline at end of file |

