[llvm] [SCEVExpander] Expand UDiv avoiding UB when in seq_min/max. (PR #92177)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 15 02:18:07 PDT 2024
================
@@ -419,6 +424,9 @@ class SCEVExpander : public SCEVVisitor<SCEVExpander, Value *> {
BasicBlock::iterator findInsertPointAfter(Instruction *I,
Instruction *MustDominate) const;
+ static const SCEV *rewriteExpressionToRemoveUB(const SCEV *BTC, Loop *L,
+ ScalarEvolution &SE);
----------------
nikic wrote:
Unused prototype.
https://github.com/llvm/llvm-project/pull/92177
More information about the llvm-commits
mailing list