Skip to content

Commit a1d21f3

Browse files
committed
- Force NEON for streaming in scalar tests
- Removed MC test
1 parent 35da536 commit a1d21f3

File tree

3 files changed

+236
-72
lines changed

3 files changed

+236
-72
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19921,6 +19921,9 @@ tryToReplaceScalarFPConversionWithSVE(SDNode *N, SelectionDAG &DAG,
1992119921
if (DCI.isBeforeLegalizeOps())
1992219922
return SDValue();
1992319923

19924+
if (Subtarget->isStreaming() && Subtarget->hasFPRCVT())
19925+
return SDValue();
19926+
1992419927
if (!Subtarget->isSVEorStreamingSVEAvailable() ||
1992519928
(!Subtarget->isStreaming() && !Subtarget->isStreamingCompatible()))
1992619929
return SDValue();

0 commit comments

Comments
 (0)