We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf8b7a commit 6dc7cf1Copy full SHA for 6dc7cf1
llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -723,6 +723,9 @@ bool VectorCombine::foldInsExtFNeg(Instruction &I) {
723
SrcVecTy, SrcMask, CostKind);
724
}
725
726
+ LLVM_DEBUG(dbgs() << "Found an insertion of (extract)fneg : " << I
727
+ << "\n OldCost: " << OldCost << " vs NewCost: " << NewCost
728
+ << "\n");
729
if (NewCost > OldCost)
730
return false;
731
0 commit comments