mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
d77f2a45aa
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118396 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
632 B
CMake
22 lines
632 B
CMake
set(LLVM_TARGET_DEFINITIONS PTX.td)
|
|
|
|
tablegen(PTXGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(PTXGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(PTXGenInstrInfo.inc -gen-instr-desc)
|
|
tablegen(PTXGenInstrNames.inc -gen-instr-enums)
|
|
tablegen(PTXGenRegisterInfo.inc -gen-register-desc)
|
|
tablegen(PTXGenRegisterInfo.h.inc -gen-register-desc-header)
|
|
tablegen(PTXGenRegisterNames.inc -gen-register-enums)
|
|
tablegen(PTXGenSubtarget.inc -gen-subtarget)
|
|
|
|
add_llvm_target(PTXCodeGen
|
|
PTXISelDAGToDAG.cpp
|
|
PTXISelLowering.cpp
|
|
PTXInstrInfo.cpp
|
|
PTXMCAsmInfo.cpp
|
|
PTXMCAsmStreamer.cpp
|
|
PTXRegisterInfo.cpp
|
|
PTXSubtarget.cpp
|
|
PTXTargetMachine.cpp
|
|
)
|