[llvm] [VPlan] Preserve DT (and SCEV) in VPlan-native path (PR #93287)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon May 27 15:58:33 PDT 2024
================
@@ -900,9 +900,8 @@ void VPlan::execute(VPTransformState *State) {
}
State->CFG.DTU.flush();
- // DT is currently updated for non-native path only.
- assert(EnableVPlanNativePath || State->CFG.DTU.getDomTree().verify(
- DominatorTree::VerificationLevel::Fast));
+ assert(State->CFG.DTU.getDomTree().verify(
+ DominatorTree::VerificationLevel::Fast));
----------------
fhahn wrote:
Added, thanks!
https://github.com/llvm/llvm-project/pull/93287
More information about the llvm-commits
mailing list