summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>2015-02-18 17:08:00 +0000
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>2015-02-18 17:08:00 +0000
commit41ede8e507092a68e1dbc1002be3eacdb7554180 (patch)
tree5de83cac3f50fd8a3ee34359aea5bf59111f08ca
parent938d957d2e59e77d4a3c7ad45e176a669f1f3e6e (diff)
downloadbcm5719-llvm-41ede8e507092a68e1dbc1002be3eacdb7554180.tar.gz
bcm5719-llvm-41ede8e507092a68e1dbc1002be3eacdb7554180.zip
Fixed missing checkins.
llvm-svn: 229699
-rw-r--r--clang-tools-extra/test/modularize/Inputs/NoProblems.modulemap9
-rw-r--r--clang-tools-extra/test/modularize/Inputs/ProblemsDuplicate.modulemap9
2 files changed, 18 insertions, 0 deletions
diff --git a/clang-tools-extra/test/modularize/Inputs/NoProblems.modulemap b/clang-tools-extra/test/modularize/Inputs/NoProblems.modulemap
new file mode 100644
index 00000000000..82029c1e41a
--- /dev/null
+++ b/clang-tools-extra/test/modularize/Inputs/NoProblems.modulemap
@@ -0,0 +1,9 @@
+// NoProblems.modulemap
+module SomeTypes {
+ header "SomeTypes.h"
+ export *
+}
+module SomeDecls {
+ header "SomeDecls.h"
+ export *
+}
diff --git a/clang-tools-extra/test/modularize/Inputs/ProblemsDuplicate.modulemap b/clang-tools-extra/test/modularize/Inputs/ProblemsDuplicate.modulemap
new file mode 100644
index 00000000000..ff1d2f52c69
--- /dev/null
+++ b/clang-tools-extra/test/modularize/Inputs/ProblemsDuplicate.modulemap
@@ -0,0 +1,9 @@
+// ProblemsDuplicate.modulemap
+module DuplicateHeader1 {
+ header "DuplicateHeader1.h"
+ export *
+}
+module DuplicateHeader2 {
+ header "DuplicateHeader2.h"
+ export *
+}
OpenPOWER on IntegriCloud