[X86][SSE] Bitcast assertion in XFormVExtractWithShuffleIntoLoad
[oota-llvm.git] / unittests / IR / CMakeLists.txt
1 set(LLVM_LINK_COMPONENTS
2   Analysis
3   AsmParser
4   Core
5   IPA
6   Support
7   )
8
9 set(IRSources
10   AttributesTest.cpp
11   ConstantRangeTest.cpp
12   ConstantsTest.cpp
13   DebugInfoTest.cpp
14   DominatorTreeTest.cpp
15   IRBuilderTest.cpp
16   InstructionsTest.cpp
17   LeakDetectorTest.cpp
18   LegacyPassManagerTest.cpp
19   MDBuilderTest.cpp
20   MetadataTest.cpp
21   PassManagerTest.cpp
22   PatternMatch.cpp
23   TypeBuilderTest.cpp
24   TypesTest.cpp
25   UseTest.cpp
26   UserTest.cpp
27   ValueHandleTest.cpp
28   ValueMapTest.cpp
29   ValueTest.cpp
30   VerifierTest.cpp
31   WaymarkTest.cpp
32   )
33
34 # HACK: Declare a couple of source files as optionally compiled to satisfy the
35 # missing-file-checker in LLVM's weird CMake build.
36 set(LLVM_OPTIONAL_SOURCES
37   ValueMapTest.cpp
38   )
39
40 add_llvm_unittest(IRTests
41   ${IRSources}
42   )