forked from OSchip/llvm-project
Fix modules build after MatrixBuilder patch
The addition of MatrixBuilder.h broke the modules build: ``` While building module 'LLVM_intrinsic_gen' imported from llvm-project/llvm/lib/IR/AbstractCallSite.cpp:19: While building module 'LLVM_IR' imported from llvm-project/llvm/include/llvm/IR/Argument.h:19: In file included from <module-includes>:6: llvm-project/llvm/include/llvm/IR/MatrixBuilder.h:19:10: fatal error: cyclic dependency in module 'LLVM_intrinsic_gen': LLVM_intrinsic_gen -> LLVM_IR -> LLVM_intrinsic_gen ^ While building module 'LLVM_intrinsic_gen' imported from llvm-project/llvm/lib/IR/AbstractCallSite.cpp:19: In file included from <module-includes>:1: llvm-project/llvm/include/llvm/IR/Argument.h:19:10: fatal error: could not build module 'LLVM_IR' ~~~~~~~~^~~~~~~~~~~~~~~~~ llvm-project/llvm/lib/IR/AbstractCallSite.cpp:19:10: fatal error: could not build module 'LLVM_intrinsic_gen' ~~~~~~~~^~~~~~~~~~~~~~~~~~~~ ```
This commit is contained in:
parent
a2fe17cdc6
commit
8673def9c1
|
@ -256,6 +256,7 @@ module LLVM_intrinsic_gen {
|
|||
module Analysis_PostDominators { header "Analysis/PostDominators.h" export * }
|
||||
module Analysis_DomTreeUpdater { header "Analysis/DomTreeUpdater.h" export * }
|
||||
module IR_IRBuilder { header "IR/IRBuilder.h" export * }
|
||||
module IR_MatrixBuilder { header "IR/MatrixBuilder.h" export * }
|
||||
module IR_PassManager { header "IR/PassManager.h" export * }
|
||||
module IR_PassManagerImpl { header "IR/PassManagerImpl.h" export * }
|
||||
module IR_PredIteratorCache { header "IR/PredIteratorCache.h" export * }
|
||||
|
|
Loading…
Reference in New Issue