[CMake] Update dependencies to intrinsics_gen corresponding to r169711.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 10 Dec 2012 05:27:15 +0000 (05:27 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 10 Dec 2012 05:27:15 +0000 (05:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169724 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Hexagon/CMakeLists.txt
lib/Target/MBlaze/InstPrinter/CMakeLists.txt
lib/Target/MSP430/InstPrinter/CMakeLists.txt
lib/Target/Mips/InstPrinter/CMakeLists.txt
tools/lto/CMakeLists.txt

index 306084bb8c52c82692ab9d63910f83c6dad30b7a..aee43ba51729ece935dc31abcec6ac34a35e0ca9 100644 (file)
@@ -9,6 +9,8 @@ tablegen(LLVM HexagonGenSubtargetInfo.inc -gen-subtarget)
 tablegen(LLVM HexagonGenDFAPacketizer.inc -gen-dfa-packetizer)
 add_public_tablegen_target(HexagonCommonTableGen)
 
+set(LLVM_COMMON_DEPENDS intrinsics_gen)
+
 add_llvm_target(HexagonCodeGen
   HexagonAsmPrinter.cpp
   HexagonCallingConvLower.cpp
@@ -33,8 +35,6 @@ add_llvm_target(HexagonCodeGen
   HexagonNewValueJump.cpp
 )
 
-add_dependencies(LLVMHexagonCodeGen intrinsics_gen)
-
 add_subdirectory(TargetInfo)
 add_subdirectory(InstPrinter)
 add_subdirectory(MCTargetDesc)
index 586e2d3eefc33c66127d97f2cb39bcec92cbc467..bb2c31a33a99330762f1f9f20437b4a59f8b34d5 100644 (file)
@@ -5,4 +5,4 @@ add_llvm_library(LLVMMBlazeAsmPrinter
   MBlazeInstPrinter.cpp
   )
 
-add_dependencies(LLVMMBlazeAsmPrinter MBlazeCommonTableGen)
+add_dependencies(LLVMMBlazeAsmPrinter intrinsics_gen MBlazeCommonTableGen)
index 64ac994b7f473965436e1cdc4e6e11b456a4f3fc..99457b924c1e564bfdc1192100bb08f6580c7be1 100644 (file)
@@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430AsmPrinter
   MSP430InstPrinter.cpp
   )
 
-add_dependencies(LLVMMSP430AsmPrinter MSP430CommonTableGen)
+add_dependencies(LLVMMSP430AsmPrinter intrinsics_gen MSP430CommonTableGen)
index 3e9fbf1c55660bde3eb241de97dc1848af372f04..c3f4a6e1be1c717567f3861448957afe3dc53705 100644 (file)
@@ -4,4 +4,4 @@ add_llvm_library(LLVMMipsAsmPrinter
   MipsInstPrinter.cpp
   )
 
-add_dependencies(LLVMMipsAsmPrinter MipsCommonTableGen)
+add_dependencies(LLVMMipsAsmPrinter intrinsics_gen MipsCommonTableGen)
index a004bad189a929bd73f8925eb9cb0d2a546bf61d..5820b1415be7d854d286a624c348933af1c726c6 100644 (file)
@@ -11,6 +11,8 @@ set(SOURCES
   LTOModule.cpp
   )
 
+set(LLVM_COMMON_DEPENDS intrinsics_gen)
+
 if( NOT WIN32 AND LLVM_ENABLE_PIC )
   set(bsl ${BUILD_SHARED_LIBS})
   set(BUILD_SHARED_LIBS ON)