Fixed missing checkins.

llvm-svn: 229699
This commit is contained in:
John Thompson 2015-02-18 17:08:00 +00:00
parent 938d957d2e
commit 41ede8e507
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// NoProblems.modulemap
module SomeTypes {
header "SomeTypes.h"
export *
}
module SomeDecls {
header "SomeDecls.h"
export *
}

View File

@ -0,0 +1,9 @@
// ProblemsDuplicate.modulemap
module DuplicateHeader1 {
header "DuplicateHeader1.h"
export *
}
module DuplicateHeader2 {
header "DuplicateHeader2.h"
export *
}