[llvm] [GISel] KnownFPClass ValueTracking fix handling of vectors (PR #143372)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 9 05:01:18 PDT 2025
================
@@ -715,6 +715,9 @@ static bool outputDenormalIsIEEEOrPosZero(const MachineFunction &MF, LLT Ty) {
void GISelValueTracking::computeKnownFPClass(Register R, KnownFPClass &Known,
FPClassTest InterestedClasses,
unsigned Depth) {
+ if (!R.isVirtual())
+ return;
----------------
arsenm wrote:
This shouldn't be reached in the first place, this is only relevant for COPY
https://github.com/llvm/llvm-project/pull/143372
More information about the llvm-commits
mailing list