mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
b4f770b68a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80584 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
787 B
CMake
26 lines
787 B
CMake
set(LLVM_TARGET_DEFINITIONS Mips.td)
|
|
|
|
tablegen(MipsGenRegisterInfo.h.inc -gen-register-desc-header)
|
|
tablegen(MipsGenRegisterNames.inc -gen-register-enums)
|
|
tablegen(MipsGenRegisterInfo.inc -gen-register-desc)
|
|
tablegen(MipsGenInstrNames.inc -gen-instr-enums)
|
|
tablegen(MipsGenInstrInfo.inc -gen-instr-desc)
|
|
tablegen(MipsGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(MipsGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(MipsGenCallingConv.inc -gen-callingconv)
|
|
tablegen(MipsGenSubtarget.inc -gen-subtarget)
|
|
|
|
add_llvm_target(MipsCodeGen
|
|
MipsDelaySlotFiller.cpp
|
|
MipsInstrInfo.cpp
|
|
MipsISelDAGToDAG.cpp
|
|
MipsISelLowering.cpp
|
|
MipsMCAsmInfo.cpp
|
|
MipsRegisterInfo.cpp
|
|
MipsSubtarget.cpp
|
|
MipsTargetMachine.cpp
|
|
MipsTargetObjectFile.cpp
|
|
)
|
|
|
|
target_link_libraries (LLVMMipsCodeGen LLVMSelectionDAG)
|