This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1715f28483f This fixes a crash when a second pass is required for the C [...] new 00f1a051eff [VPlan] Introduce VPlan-based dominator analysis.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/Transforms/Vectorize/LoopVectorize.cpp | 4 +- lib/Transforms/Vectorize/VPlan.cpp | 5 +- lib/Transforms/Vectorize/VPlan.h | 105 +++++++++-- lib/Transforms/Vectorize/VPlanDominatorTree.h | 41 +++++ lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp | 15 +- lib/Transforms/Vectorize/VPlanHCFGBuilder.h | 23 ++- unittests/Transforms/Vectorize/CMakeLists.txt | 1 + .../Vectorize/VPlanDominatorTreeTest.cpp | 196 +++++++++++++++++++++ unittests/Transforms/Vectorize/VPlanTestBase.h | 15 +- 9 files changed, 382 insertions(+), 23 deletions(-) create mode 100644 lib/Transforms/Vectorize/VPlanDominatorTree.h create mode 100644 unittests/Transforms/Vectorize/VPlanDominatorTreeTest.cpp