[llvm-branch-commits] [llvm] [AArch64][llvm] Allow FPRCVT insns to run in streaming mode if safe (PR #177334)
Jonathan Thackray via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Feb 2 06:41:05 PST 2026
================
@@ -20409,6 +20409,9 @@ tryToReplaceScalarFPConversionWithSVE(SDNode *N, SelectionDAG &DAG,
N->getOpcode() == ISD::FP_TO_UINT_SAT)
return SDValue();
+ if (Subtarget->isStreaming() && Subtarget->hasFPRCVT())
----------------
jthackray wrote:
Thanks, Marian. As discussed last week, I've removed `tryToReplaceScalarFPConversionWithSVE()` entirely in the latest change.
https://github.com/llvm/llvm-project/pull/177334
More information about the llvm-branch-commits
mailing list