[PATCH] D156845: [ConstantRange] Calculate precise range for shl by -1
Allen zhong via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 3 19:40:17 PDT 2023
Allen marked an inline comment as done.
Allen added inline comments.
================
Comment at: llvm/lib/IR/ConstantRange.cpp:1501
+ return ConstantRange::getNonEmpty(std::move(Max), std::move(Min) + 1);
+ } else
+ return ConstantRange::getNonEmpty(std::move(Min), std::move(Max) + 1);
----------------
arsenm wrote:
> No else after return
Done, thanks
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D156845/new/
https://reviews.llvm.org/D156845
More information about the llvm-commits
mailing list