mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 20:34:38 +00:00
25 lines
749 B
CMake
25 lines
749 B
CMake
|
set(LLVM_TARGET_DEFINITIONS Sparc.td)
|
||
|
|
||
|
tablegen(SparcGenRegisterInfo.h.inc -gen-register-desc-header)
|
||
|
tablegen(SparcGenRegisterNames.inc -gen-register-enums)
|
||
|
tablegen(SparcGenRegisterInfo.inc -gen-register-desc)
|
||
|
tablegen(SparcGenInstrNames.inc -gen-instr-enums)
|
||
|
tablegen(SparcGenInstrInfo.inc -gen-instr-desc)
|
||
|
tablegen(SparcGenAsmWriter.inc -gen-asm-writer)
|
||
|
tablegen(SparcGenDAGISel.inc -gen-dag-isel)
|
||
|
tablegen(SparcGenSubtarget.inc -gen-subtarget)
|
||
|
tablegen(SparcGenCallingConv.inc -gen-callingconv)
|
||
|
|
||
|
add_llvm_target(Sparc
|
||
|
DelaySlotFiller.cpp
|
||
|
FPMover.cpp
|
||
|
SparcAsmPrinter.cpp
|
||
|
SparcInstrInfo.cpp
|
||
|
SparcISelDAGToDAG.cpp
|
||
|
SparcISelLowering.cpp
|
||
|
SparcRegisterInfo.cpp
|
||
|
SparcSubtarget.cpp
|
||
|
SparcTargetAsmInfo.cpp
|
||
|
SparcTargetMachine.cpp
|
||
|
)
|