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
| set(LLVM_LINK_COMPONENTS
| Support
| )
|
| set(ADTSources
| APFloatTest.cpp
| APIntTest.cpp
| APSIntTest.cpp
| ArrayRefTest.cpp
| BitmaskEnumTest.cpp
| BitVectorTest.cpp
| DAGDeltaAlgorithmTest.cpp
| DeltaAlgorithmTest.cpp
| DenseMapTest.cpp
| DenseSetTest.cpp
| FoldingSet.cpp
| FunctionRefTest.cpp
| HashingTest.cpp
| ilistTest.cpp
| ImmutableMapTest.cpp
| ImmutableSetTest.cpp
| IntEqClassesTest.cpp
| IntervalMapTest.cpp
| IntrusiveRefCntPtrTest.cpp
| MakeUniqueTest.cpp
| MapVectorTest.cpp
| OptionalTest.cpp
| PackedVectorTest.cpp
| PointerEmbeddedIntTest.cpp
| PointerIntPairTest.cpp
| PointerSumTypeTest.cpp
| PointerUnionTest.cpp
| PostOrderIteratorTest.cpp
| PriorityWorklistTest.cpp
| RangeAdapterTest.cpp
| SCCIteratorTest.cpp
| SequenceTest.cpp
| SetVectorTest.cpp
| SmallPtrSetTest.cpp
| SmallStringTest.cpp
| SmallVectorTest.cpp
| SparseBitVectorTest.cpp
| SparseMultiSetTest.cpp
| SparseSetTest.cpp
| StringMapTest.cpp
| StringRefTest.cpp
| TinyPtrVectorTest.cpp
| TripleTest.cpp
| TwineTest.cpp
| VariadicFunctionTest.cpp
| )
|
| add_llvm_unittest(ADTTests
| ${ADTSources}
| )
|
| add_dependencies(ADTTests intrinsics_gen)
|
|