AMDGPU: Mark test as XFAIL in expensive_checks builds
[llvm-project.git] / llvm / lib / Target / AVR / CMakeLists.txt
blob817ba739d8418ac36d790aa43b70415eaf2c6c3b
1 add_llvm_component_group(AVR)
3 set(LLVM_TARGET_DEFINITIONS AVR.td)
5 tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
6 tablegen(LLVM AVRGenAsmWriter.inc -gen-asm-writer)
7 tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv)
8 tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
9 tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
10 tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
11 tablegen(LLVM AVRGenMCCodeEmitter.inc -gen-emitter)
12 tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
13 tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
15 add_public_tablegen_target(AVRCommonTableGen)
17 add_llvm_target(AVRCodeGen
18   AVRAsmPrinter.cpp
19   AVRExpandPseudoInsts.cpp
20   AVRFrameLowering.cpp
21   AVRInstrInfo.cpp
22   AVRISelDAGToDAG.cpp
23   AVRISelLowering.cpp
24   AVRMCInstLower.cpp
25   AVRRegisterInfo.cpp
26   AVRShiftExpand.cpp
27   AVRSubtarget.cpp
28   AVRTargetMachine.cpp
29   AVRTargetObjectFile.cpp
31   DEPENDS
32   intrinsics_gen
34   LINK_COMPONENTS
35   AVRDesc
36   AVRInfo
37   AsmPrinter
38   CodeGen
39   CodeGenTypes
40   Core
41   MC
42   SelectionDAG
43   Support
44   Target
46   ADD_TO_COMPONENT
47   AVR
48   )
50 add_subdirectory(AsmParser)
51 add_subdirectory(Disassembler)
52 add_subdirectory(MCTargetDesc)
53 add_subdirectory(TargetInfo)