diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-06 01:51:51 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-10-06 01:51:51 +0000 |
commit | de8f33c199f3bf2049b0b732169f2bd8717469c6 (patch) | |
tree | 4906ed892dbff03bbd44aae2eff9d7ec0c195755 /lib/Target/Mips/CMakeLists.txt | |
parent | 930193cb5544bd010a0a2bc795c9006913e2c595 (diff) |
Build system infrastructure for multiple tblgens.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141266 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/CMakeLists.txt')
-rw-r--r-- | lib/Target/Mips/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Target/Mips/CMakeLists.txt b/lib/Target/Mips/CMakeLists.txt index 9daa89e54f..1b4329baf0 100644 --- a/lib/Target/Mips/CMakeLists.txt +++ b/lib/Target/Mips/CMakeLists.txt @@ -1,11 +1,11 @@ set(LLVM_TARGET_DEFINITIONS Mips.td) -tablegen(MipsGenRegisterInfo.inc -gen-register-info) -tablegen(MipsGenInstrInfo.inc -gen-instr-info) -tablegen(MipsGenAsmWriter.inc -gen-asm-writer) -tablegen(MipsGenDAGISel.inc -gen-dag-isel) -tablegen(MipsGenCallingConv.inc -gen-callingconv) -tablegen(MipsGenSubtargetInfo.inc -gen-subtarget) +llvm_tablegen(MipsGenRegisterInfo.inc -gen-register-info) +llvm_tablegen(MipsGenInstrInfo.inc -gen-instr-info) +llvm_tablegen(MipsGenAsmWriter.inc -gen-asm-writer) +llvm_tablegen(MipsGenDAGISel.inc -gen-dag-isel) +llvm_tablegen(MipsGenCallingConv.inc -gen-callingconv) +llvm_tablegen(MipsGenSubtargetInfo.inc -gen-subtarget) add_public_tablegen_target(MipsCommonTableGen) add_llvm_target(MipsCodeGen |