[llvm] [AArch64][llvm] Allow FPRCVT insns to run in streaming mode if safe (PR #175544)
Jonathan Thackray via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 22 02:36:02 PST 2026
================
@@ -20325,6 +20325,9 @@ tryToReplaceScalarFPConversionWithSVE(SDNode *N, SelectionDAG &DAG,
if (DCI.isBeforeLegalizeOps())
return SDValue();
+ if (Subtarget->isStreaming() && Subtarget->hasFPRCVT())
----------------
jthackray wrote:
I chatted to Carol about this, and she thought not. I've moved this PR to a new PR https://github.com/llvm/llvm-project/pull/177334/ to allow for pre-commit tests.
https://github.com/llvm/llvm-project/pull/175544
More information about the llvm-commits
mailing list