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