[LoongArch] Eliminate the redundant sign extension of division (#107971)
[llvm-project.git] / llvm / lib / Target / ARC / CMakeLists.txt
blob9f3c1787c5635e3efa785e70879234d9d5fe3876
1 add_llvm_component_group(ARC)
3 set(LLVM_TARGET_DEFINITIONS ARC.td)
5 tablegen(LLVM ARCGenAsmWriter.inc -gen-asm-writer)
6 tablegen(LLVM ARCGenCallingConv.inc -gen-callingconv)
7 tablegen(LLVM ARCGenDAGISel.inc -gen-dag-isel)
8 tablegen(LLVM ARCGenDisassemblerTables.inc -gen-disassembler)
9 tablegen(LLVM ARCGenInstrInfo.inc -gen-instr-info)
10 tablegen(LLVM ARCGenRegisterInfo.inc -gen-register-info)
11 tablegen(LLVM ARCGenSubtargetInfo.inc -gen-subtarget)
13 add_public_tablegen_target(ARCCommonTableGen)
15 add_llvm_target(ARCCodeGen
16   ARCAsmPrinter.cpp
17   ARCBranchFinalize.cpp
18   ARCExpandPseudos.cpp
19   ARCFrameLowering.cpp
20   ARCInstrInfo.cpp
21   ARCISelDAGToDAG.cpp
22   ARCISelLowering.cpp
23   ARCMachineFunctionInfo.cpp
24   ARCMCInstLower.cpp
25   ARCOptAddrMode.cpp
26   ARCRegisterInfo.cpp
27   ARCSubtarget.cpp
28   ARCTargetMachine.cpp
30   LINK_COMPONENTS
31   ARCDesc
32   ARCInfo
33   Analysis
34   AsmPrinter
35   CodeGen
36   CodeGenTypes
37   Core
38   MC
39   SelectionDAG
40   Support
41   Target
42   TargetParser
43   TransformUtils
45   ADD_TO_COMPONENT
46   ARC
47   )
49 add_subdirectory(Disassembler)
50 add_subdirectory(MCTargetDesc)
51 add_subdirectory(TargetInfo)