[llvm] [X86] Try Folding icmp of v8i32 -> fcmp of v8f32 on AVX (PR #82290)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 29 12:16:19 PST 2024
================
@@ -2313,6 +2313,26 @@ bool TargetLowering::SimplifyDemandedBits(
Known = TLO.DAG.computeKnownBits(Op, DemandedElts, Depth);
break;
}
+ case ISD::SINT_TO_FP: {
+ EVT InnerVT = Op.getOperand(0).getValueType();
+ const APInt &DemandedBitsToUse =
+ TLO.DAG.getTargetLoweringInfo().isBitcastFree(VT, InnerVT)
+ ? OriginalDemandedBits
----------------
goldsteinn wrote:
Fixed.
https://github.com/llvm/llvm-project/pull/82290
More information about the llvm-commits
mailing list