[AMDGPU][AsmParser][NFC] Get rid of custom default operand handlers.
[llvm-project.git] / clang / lib / CodeGen / CMakeLists.txt
blobca71ad9e68e2768ac985f7e2620e102a866e3d32
1 set(LLVM_LINK_COMPONENTS
2   AggressiveInstCombine
3   Analysis
4   BitReader
5   BitWriter
6   CodeGenTypes
7   Core
8   Coroutines
9   Coverage
10   Demangle
11   Extensions
12   FrontendHLSL
13   FrontendOpenMP
14   IPO
15   IRPrinter
16   IRReader
17   InstCombine
18   Instrumentation
19   LTO
20   Linker
21   MC
22   ObjCARCOpts
23   Object
24   Passes
25   ProfileData
26   ScalarOpts
27   Support
28   Target
29   TargetParser
30   TransformUtils
31   )
33 add_clang_library(clangCodeGen
34   BackendUtil.cpp
35   CGAtomic.cpp
36   CGBlocks.cpp
37   CGBuiltin.cpp
38   CGCUDANV.cpp
39   CGCUDARuntime.cpp
40   CGCXX.cpp
41   CGCXXABI.cpp
42   CGCall.cpp
43   CGClass.cpp
44   CGCleanup.cpp
45   CGCoroutine.cpp
46   CGDebugInfo.cpp
47   CGDecl.cpp
48   CGDeclCXX.cpp
49   CGException.cpp
50   CGExpr.cpp
51   CGExprAgg.cpp
52   CGExprCXX.cpp
53   CGExprComplex.cpp
54   CGExprConstant.cpp
55   CGExprScalar.cpp
56   CGGPUBuiltin.cpp
57   CGHLSLRuntime.cpp
58   CGLoopInfo.cpp
59   CGNonTrivialStruct.cpp
60   CGObjC.cpp
61   CGObjCGNU.cpp
62   CGObjCMac.cpp
63   CGObjCRuntime.cpp
64   CGOpenCLRuntime.cpp
65   CGOpenMPRuntime.cpp
66   CGOpenMPRuntimeGPU.cpp
67   CGRecordLayoutBuilder.cpp
68   CGStmt.cpp
69   CGStmtOpenMP.cpp
70   CGVTT.cpp
71   CGVTables.cpp
72   CodeGenABITypes.cpp
73   CodeGenAction.cpp
74   CodeGenFunction.cpp
75   CodeGenModule.cpp
76   CodeGenPGO.cpp
77   CodeGenTBAA.cpp
78   CodeGenTypes.cpp
79   ConstantInitBuilder.cpp
80   CoverageMappingGen.cpp
81   ItaniumCXXABI.cpp
82   MacroPPCallbacks.cpp
83   MicrosoftCXXABI.cpp
84   ModuleBuilder.cpp
85   ObjectFilePCHContainerOperations.cpp
86   PatternInit.cpp
87   SanitizerMetadata.cpp
88   SwiftCallingConv.cpp
89   TargetInfo.cpp
90   VarBypassDetector.cpp
92   DEPENDS
93   intrinsics_gen
95   LINK_LIBS
96   clangAST
97   clangAnalysis
98   clangBasic
99   clangFrontend
100   clangLex
101   clangSerialization
102   )