Fix the current parsing of subframeworks in modulemaps to lookup for headers based on whether they are frameworks. rdar://problem/30563982 llvm-svn: 298391
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
module Main.Private {
|
|
umbrella header "MainPriv.h"
|
|
module * { export * }
|
|
export *
|
|
}
|
|
|
|
module Main.Sub.Private {
|
|
umbrella header "SubPriv.h"
|
|
module * { export * }
|
|
export *
|
|
}
|