
The patch introduces loop analysis (VPLoopInfo/VPLoop) for VPBlockBases. This analysis will be necessary to perform some H-CFG transformations and detect and introduce regions representing a loop in the H-CFG. Reviewers: fhahn, rengolin, mkuper, hfinkel, mssimpso Reviewed By: fhahn Differential Revision: https://reviews.llvm.org/D48816 llvm-svn: 338346
14 lines
198 B
CMake
14 lines
198 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Analysis
|
|
Core
|
|
Vectorize
|
|
AsmParser
|
|
)
|
|
|
|
add_llvm_unittest(VectorizeTests
|
|
VPlanDominatorTreeTest.cpp
|
|
VPlanLoopInfoTest.cpp
|
|
VPlanTest.cpp
|
|
VPlanHCFGTest.cpp
|
|
)
|