[PATCH] D148230: ValueTracking: fadd +0 cannot return -0
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 4 10:21:41 PDT 2023
arsenm added a comment.
ping
================
Comment at: llvm/include/llvm/Analysis/ValueTracking.h:281
+ /// Return true if it's known this can never be a positive subnormal
+ bool isKnownNeverPosSubnormal() const {
+ return isKnownNever(fcPosSubnormal);
----------------
foad wrote:
> Matter of taste I guess, but I don't think a helper function this simple actually helps.
Mostly for consistency with the others
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148230/new/
https://reviews.llvm.org/D148230
More information about the llvm-commits
mailing list