mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
385e930d55
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134281 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
676 B
CMake
26 lines
676 B
CMake
set(LLVM_TARGET_DEFINITIONS Alpha.td)
|
|
|
|
tablegen(AlphaGenRegisterInfo.inc -gen-register-info)
|
|
tablegen(AlphaGenInstrInfo.inc -gen-instr-info)
|
|
tablegen(AlphaGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(AlphaGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(AlphaGenCallingConv.inc -gen-callingconv)
|
|
tablegen(AlphaGenSubtargetInfo.inc -gen-subtarget)
|
|
|
|
add_llvm_target(AlphaCodeGen
|
|
AlphaAsmPrinter.cpp
|
|
AlphaBranchSelector.cpp
|
|
AlphaInstrInfo.cpp
|
|
AlphaISelDAGToDAG.cpp
|
|
AlphaISelLowering.cpp
|
|
AlphaFrameLowering.cpp
|
|
AlphaLLRP.cpp
|
|
AlphaMCAsmInfo.cpp
|
|
AlphaRegisterInfo.cpp
|
|
AlphaSubtarget.cpp
|
|
AlphaTargetMachine.cpp
|
|
AlphaSelectionDAGInfo.cpp
|
|
)
|
|
|
|
add_subdirectory(TargetInfo)
|