[llvm] [ValueTracking] Implement sdiv/udiv support for isKnownNonNullFromDominatingCondition (PR #67282)
Dhruv Chawla via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 19 03:35:57 PDT 2023
================
@@ -2263,6 +2263,12 @@ static bool isKnownNonNullFromDominatingCondition(const Value *V,
return true;
}
+ if (const auto *Div = dyn_cast<BinaryOperator>(U);
+ Div && Div->getOpcode() == BinaryOperator::UDiv &&
+ Div->getOperand(1) == V &&
+ isValidAssumeForContext(cast<Instruction>(U), CtxI, DT))
----------------
dc03 wrote:
@nikic Any issues that could occur with isEphemeralValueOf()?
https://github.com/llvm/llvm-project/pull/67282
More information about the llvm-commits
mailing list