[SampleProfileLoader] Fix integer overflow in generateMDProfMetadata (#90217)
[llvm-project.git] / llvm / lib / Target / MSP430 / CMakeLists.txt
blob1dfe8635acb32bb014ba7f9552fcd7159dd62f8a
1 add_llvm_component_group(MSP430)
3 set(LLVM_TARGET_DEFINITIONS MSP430.td)
5 tablegen(LLVM MSP430GenAsmMatcher.inc -gen-asm-matcher)
6 tablegen(LLVM MSP430GenAsmWriter.inc -gen-asm-writer)
7 tablegen(LLVM MSP430GenCallingConv.inc -gen-callingconv)
8 tablegen(LLVM MSP430GenDAGISel.inc -gen-dag-isel)
9 tablegen(LLVM MSP430GenDisassemblerTables.inc -gen-disassembler)
10 tablegen(LLVM MSP430GenInstrInfo.inc -gen-instr-info)
11 tablegen(LLVM MSP430GenMCCodeEmitter.inc -gen-emitter)
12 tablegen(LLVM MSP430GenRegisterInfo.inc -gen-register-info)
13 tablegen(LLVM MSP430GenSubtargetInfo.inc -gen-subtarget)
15 add_public_tablegen_target(MSP430CommonTableGen)
17 add_llvm_target(MSP430CodeGen
18   MSP430BranchSelector.cpp
19   MSP430ISelDAGToDAG.cpp
20   MSP430ISelLowering.cpp
21   MSP430InstrInfo.cpp
22   MSP430FrameLowering.cpp
23   MSP430MachineFunctionInfo.cpp
24   MSP430RegisterInfo.cpp
25   MSP430Subtarget.cpp
26   MSP430TargetMachine.cpp
27   MSP430AsmPrinter.cpp
28   MSP430MCInstLower.cpp
30   LINK_COMPONENTS
31   AsmPrinter
32   CodeGen
33   CodeGenTypes
34   Core
35   MC
36   MSP430Desc
37   MSP430Info
38   SelectionDAG
39   Support
40   Target
42   ADD_TO_COMPONENT
43   MSP430
44   )
46 add_subdirectory(MCTargetDesc)
47 add_subdirectory(TargetInfo)
48 add_subdirectory(AsmParser)
49 add_subdirectory(Disassembler)