GVN: use a static array instead of regenerating it each time. NFC.
[oota-llvm.git] / unittests / ADT / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Support
3   )
4
5 set(ADTSources
6   APFloatTest.cpp
7   APIntTest.cpp
8   APSIntTest.cpp
9   ArrayRefTest.cpp
10   BitVectorTest.cpp
11   DAGDeltaAlgorithmTest.cpp
12   DeltaAlgorithmTest.cpp
13   DenseMapTest.cpp
14   DenseSetTest.cpp
15   FoldingSet.cpp
16   FunctionRefTest.cpp
17   HashingTest.cpp
18   ilistTest.cpp
19   ImmutableMapTest.cpp
20   ImmutableSetTest.cpp
21   IntEqClassesTest.cpp
22   IntervalMapTest.cpp
23   IntrusiveRefCntPtrTest.cpp
24   MakeUniqueTest.cpp
25   MapVectorTest.cpp
26   OptionalTest.cpp
27   PackedVectorTest.cpp
28   PointerIntPairTest.cpp
29   PointerUnionTest.cpp
30   PostOrderIteratorTest.cpp
31   SCCIteratorTest.cpp
32   SmallPtrSetTest.cpp
33   SmallStringTest.cpp
34   SmallVectorTest.cpp
35   SparseBitVectorTest.cpp
36   SparseMultiSetTest.cpp
37   SparseSetTest.cpp
38   StringMapTest.cpp
39   StringRefTest.cpp
40   TinyPtrVectorTest.cpp
41   TripleTest.cpp
42   TwineTest.cpp
43   VariadicFunctionTest.cpp
44  )
45
46 add_llvm_unittest(ADTTests
47   ${ADTSources}
48   )
49
50 add_dependencies(ADTTests intrinsics_gen)