r206221 - 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.
Nick Lewycky
nicholas at mxc.ca
Mon Apr 14 15:30:21 PDT 2014
Author: nicholas
Date: Mon Apr 14 17:30:21 2014
New Revision: 206221
URL: http://llvm.org/viewvc/llvm-project?rev=206221&view=rev
Log:
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.
Modified:
cfe/trunk/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap
cfe/trunk/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap
Modified: cfe/trunk/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap?rev=206221&r1=206220&r2=206221&view=diff
==============================================================================
--- cfe/trunk/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap (original)
+++ cfe/trunk/test/Modules/Inputs/modules-with-same-name/path1/A/module.modulemap Mon Apr 14 17:30:21 2014
@@ -1,3 +1,5 @@
+// path1. This comment keeps this file from being identical to
+// path2/A/module.modulemap.
module A {
header "a.h"
}
Modified: cfe/trunk/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap?rev=206221&r1=206220&r2=206221&view=diff
==============================================================================
--- cfe/trunk/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap (original)
+++ cfe/trunk/test/Modules/Inputs/modules-with-same-name/path2/A/module.modulemap Mon Apr 14 17:30:21 2014
@@ -1,3 +1,5 @@
+// path2. This comment keeps this file from being identical to
+// path1/A/module.modulemap.
module A {
header "a.h"
}
More information about the cfe-commits
mailing list