Skip to content

Commit 0e0d34a

Browse files
author
Simon Moll
committed
fix: Disable VP DAGCombine (redundant with VVP custom FMA combines)
1 parent 5636856 commit 0e0d34a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14089,6 +14089,8 @@ SDValue DAGCombiner::visitFMULForFMADistributiveCombine(SDNode *N) {
1408914089
}
1409014090

1409114091
SDValue DAGCombiner::visitFADD_VP(SDNode *N) {
14092+
return SDValue();
14093+
#if 0
1409214094
SelectionDAG::FlagInserter FlagsInserter(DAG, N);
1409314095

1409414096
// FADD -> FMA combines:
@@ -14097,6 +14099,7 @@ SDValue DAGCombiner::visitFADD_VP(SDNode *N) {
1409714099
return Fused;
1409814100
}
1409914101
return SDValue();
14102+
#endif
1410014103
}
1410114104

1410214105
SDValue DAGCombiner::visitFADD(SDNode *N) {

0 commit comments

Comments
 (0)