[Modules Build] Add missing dependency.

A previous commit made libLLVMDebugInfoDWARF depend on the LLVM_Bitcode module which depends on the LLVM_intrinsic_gen module which depends on "llvm/IR/Attributes.inc" which is a generated header not depended on by libLLVMDebugInfo. Add that dependency.

llvm-svn: 374827
This commit is contained in:
Michael J. Spencer 2019-10-14 21:53:51 +00:00
parent 4e9f29eabb
commit 4f701940d4

View File

@ -30,4 +30,7 @@ add_llvm_library(LLVMDebugInfoDWARF
ADDITIONAL_HEADER_DIRS
${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo/DWARF
${LLVM_MAIN_INCLUDE_DIR}/llvm/DebugInfo
DEPENDS
intrinsics_gen
)