diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-24 13:32:01 +0000 | 
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-24 13:32:01 +0000 | 
| commit | 704de074b893509c3e53f938a176b47ed7336fc9 (patch) | |
| tree | cf45bbd3c6b34e8f150d3630f6dd7b617ef5e117 /llvm/lib/CodeGen | |
| parent | 3099ce94892a477b988616800fe703f76e1d4461 (diff) | |
| download | bcm5719-llvm-704de074b893509c3e53f938a176b47ed7336fc9.tar.gz bcm5719-llvm-704de074b893509c3e53f938a176b47ed7336fc9.zip | |
llvm/lib: [CMake] Add explicit dependency to intrinsics_gen.
llvm-svn: 159112
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/llvm/lib/CodeGen/CMakeLists.txt b/llvm/lib/CodeGen/CMakeLists.txt index de6af5a91d4..a2ce7a004d8 100644 --- a/llvm/lib/CodeGen/CMakeLists.txt +++ b/llvm/lib/CodeGen/CMakeLists.txt @@ -104,5 +104,7 @@ add_llvm_library(LLVMCodeGen    VirtRegMap.cpp    ) +add_dependencies(LLVMCodeGen intrinsics_gen) +  add_subdirectory(SelectionDAG)  add_subdirectory(AsmPrinter) diff --git a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt index a6bdc3be32e..75e816720f5 100644 --- a/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt +++ b/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt @@ -23,3 +23,5 @@ add_llvm_library(LLVMSelectionDAG    TargetLowering.cpp    TargetSelectionDAGInfo.cpp    ) + +add_dependencies(LLVMSelectionDAG intrinsics_gen) | 

