aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/IR/CMakeLists.txt
blob: a03b0711ba33f018a5640893f1de17332994796b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
set(LLVM_LINK_COMPONENTS
  Analysis
  AsmParser
  Core
  Support
  Passes
  TargetParser
  TransformUtils
  ScalarOpts
  )

add_llvm_unittest(IRTests
  AbstractCallSiteTest.cpp
  AsmWriterTest.cpp
  AttributesTest.cpp
  BasicBlockTest.cpp
  BasicBlockDbgInfoTest.cpp
  CFGBuilder.cpp
  ConstantRangeTest.cpp
  ConstantsTest.cpp
  DataLayoutTest.cpp
  DebugInfoTest.cpp
  DebugTypeODRUniquingTest.cpp
  DemandedBitsTest.cpp
  DominatorTreeTest.cpp
  DominatorTreeBatchUpdatesTest.cpp
  FunctionTest.cpp
  PassBuilderCallbacksTest.cpp
  IRBuilderTest.cpp
  InstructionsTest.cpp
  IntrinsicsTest.cpp
  LegacyPassManagerTest.cpp
  MDBuilderTest.cpp
  MemoryModelRelaxationAnnotationsTest.cpp
  ManglerTest.cpp
  MetadataTest.cpp
  ModuleTest.cpp
  ModuleSummaryIndexTest.cpp
  PassManagerTest.cpp
  PatternMatch.cpp
  ShuffleVectorInstTest.cpp
  StructuralHashTest.cpp
  TimePassesTest.cpp
  TypesTest.cpp
  UseTest.cpp
  UserTest.cpp
  ValueHandleTest.cpp
  ValueMapTest.cpp
  ValueTest.cpp
  VectorBuilderTest.cpp
  VectorTypesTest.cpp
  VerifierTest.cpp
  VFABIDemanglerTest.cpp
  VPIntrinsicTest.cpp
  CoreBindings.cpp
  )

target_link_libraries(IRTests PRIVATE LLVMTestingSupport)