diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-19 00:26:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-19 00:26:46 +0000 |
commit | 7eaf6dd84aca6c28f3374595bf917393284e747c (patch) | |
tree | 25ef0122c09a834fa78cfb247cf403dfc7af90ba /llvm | |
parent | 83779208cc0a339641dd3d9ba01ffe9f1f06f0c2 (diff) | |
download | bcm5719-llvm-7eaf6dd84aca6c28f3374595bf917393284e747c.tar.gz bcm5719-llvm-7eaf6dd84aca6c28f3374595bf917393284e747c.zip |
Tweak cmake files for the four targets that don't split CodeGen out.
- We should canonicalize this and get rid of the cmake and llvm-config hacks to
support both variants.
llvm-svn: 76350
Diffstat (limited to 'llvm')
4 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt b/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt index 2d1aa9d4e5e..1d408d0cb5b 100644 --- a/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt +++ b/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430Info MSP430TargetInfo.cpp ) -add_dependencies(LLVMMSP430Info MSP430CodeGenTable_gen) +add_dependencies(LLVMMSP430Info MSP430Table_gen) diff --git a/llvm/lib/Target/PIC16/TargetInfo/CMakeLists.txt b/llvm/lib/Target/PIC16/TargetInfo/CMakeLists.txt index f9aa3bf2d9f..bfc6ff4e8e2 100644 --- a/llvm/lib/Target/PIC16/TargetInfo/CMakeLists.txt +++ b/llvm/lib/Target/PIC16/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMPIC16Info PIC16TargetInfo.cpp ) -add_dependencies(LLVMPIC16Info PIC16CodeGenTable_gen) +add_dependencies(LLVMPIC16Info PIC16Table_gen) diff --git a/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt b/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt index 743d8d322d0..897ec48cfb2 100644 --- a/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt +++ b/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMSystemZInfo SystemZTargetInfo.cpp ) -add_dependencies(LLVMSystemZInfo SystemZCodeGenTable_gen) +add_dependencies(LLVMSystemZInfo SystemZTable_gen) diff --git a/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt b/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt index c147b8a66bc..0a568de1624 100644 --- a/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt +++ b/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMXCoreInfo XCoreTargetInfo.cpp ) -add_dependencies(LLVMXCoreInfo XCoreCodeGenTable_gen) +add_dependencies(LLVMXCoreInfo XCoreTable_gen) |