mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
c4ad534f81
The specializations were broken. For example, void foo(const CallGraph *G) { auto I = GraphTraits<const CallGraph *>::nodes_begin(G); auto K = I++; ... } or void bar(const CallGraphNode *N) { auto I = GraphTraits<const CallGraphNode *>::nodes_begin(G); auto K = I++; .... } would not compile. Patch by Speziale Ettore! llvm-svn: 222149
16 lines
216 B
CMake
16 lines
216 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
IPA
|
|
Analysis
|
|
AsmParser
|
|
Core
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(AnalysisTests
|
|
CallGraphTest.cpp
|
|
CFGTest.cpp
|
|
LazyCallGraphTest.cpp
|
|
ScalarEvolutionTest.cpp
|
|
MixedTBAATest.cpp
|
|
)
|