diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2014-04-14 22:30:21 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2014-04-14 22:30:21 +0000 |
commit | 646621e6a8d777da3193287102a6f374165723e2 (patch) | |
tree | 47bb17f2988ff4c561e31e108f27ba47cb043add | |
parent | a344b6c314e32ff6f8e6475024b30aecf31e3f21 (diff) | |
download | bcm5719-llvm-646621e6a8d777da3193287102a6f374165723e2.tar.gz bcm5719-llvm-646621e6a8d777da3193287102a6f374165723e2.zip |
Make sure these two files are distinct, or else the modules system may, on certain file systems, treat them as if they were the same file.
llvm-svn: 206221
-rw-r--r-- | clang/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap | 2 | ||||
-rw-r--r-- | clang/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap b/clang/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap index bbd9d674c94..76c3358335f 100644 --- a/clang/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap +++ b/clang/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap @@ -1,3 +1,5 @@ +// path1. This comment keeps this file from being identical to +// path2/A/module.modulemap. module A { header "a.h" } diff --git a/clang/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap b/clang/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap index bbd9d674c94..2ff394378e7 100644 --- a/clang/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap +++ b/clang/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap @@ -1,3 +1,5 @@ +// path2. This comment keeps this file from being identical to +// path1/A/module.modulemap. module A { header "a.h" } |