diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-03-19 20:23:34 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-03-19 20:23:34 +0000 |
commit | 984e1df77a9e7e22629fc3820dec761dabd3339e (patch) | |
tree | 4fb3528f8810e90086200637e5eacef56865c1b1 /clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap | |
parent | a70f858145fbfe480dae0fb4906dac0b348f76d2 (diff) | |
download | bcm5719-llvm-984e1df77a9e7e22629fc3820dec761dabd3339e.tar.gz bcm5719-llvm-984e1df77a9e7e22629fc3820dec761dabd3339e.zip |
Add a new spelling for module map files 'module.modulemap'
This name, while more verbose, plays more nicely with tools that use
file extensions to determine file types. The existing spelling
'module.map' will continue to work, but the new spelling will take
precedence.
In frameworks, this new filename will only go in a new 'Modules'
sub-directory.
Similarly, add a module.private.modulemap corresponding to
module_private.map.
llvm-svn: 204261
Diffstat (limited to 'clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap')
-rw-r--r-- | clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap b/clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap new file mode 100644 index 00000000000..2ac7cc52b4f --- /dev/null +++ b/clang/test/Modules/Inputs/ModuleMapLocations/Module_ModuleMap/module.modulemap @@ -0,0 +1,3 @@ +module module_modulemap { + header "a.h" +} |