forked from OSchip/llvm-project
Unbreak module builds by making InstructionWorklist.h non-modular
This regressed in D110181 and apparently the header intentionally requires DEBUG_TYPE to be defined by the including file. Just exclude the header from the module to unbreak the build.
This commit is contained in:
parent
d0746f2e9b
commit
a5e1c746b8
|
@ -388,6 +388,9 @@ module LLVM_Transforms {
|
|||
umbrella "Transforms"
|
||||
|
||||
module * { export * }
|
||||
|
||||
// Requires DEBUG_TYPE to be defined by including file.
|
||||
exclude header "Transforms/Utils/InstructionWorklist.h"
|
||||
}
|
||||
|
||||
extern module LLVM_Extern_Utils_DataTypes "module.extern.modulemap"
|
||||
|
|
Loading…
Reference in New Issue