[llvm] [InstCombine] Fix Failure to convert vector fp comparisons that can be represented as integers #82241 (PR #83274)
Yingwei Zheng via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 28 07:44:52 PST 2024
================
@@ -7298,6 +7302,16 @@ Instruction *InstCombinerImpl::foldFCmpIntToFPConst(FCmpInst &I,
unsigned IntWidth = IntTy->getScalarSizeInBits();
bool LHSUnsigned = isa<UIToFPInst>(LHSI);
+ Value *False, *True;
+ if (IntTy->isVectorTy()) {
+ ElementCount EC = cast<VectorType>(IntTy)->getElementCount();
+ True = Builder.CreateVectorSplat(EC, Builder.getTrue());
+ False = Builder.CreateVectorSplat(EC, Builder.getFalse());
+ } else {
+ True = Builder.getTrue();
+ False = Builder.getFalse();
+ }
+
----------------
dtcxzyw wrote:
```suggestion
```
https://github.com/llvm/llvm-project/pull/83274
More information about the llvm-commits
mailing list