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 1ea556a commit 31eeaa9Copy full SHA for 31eeaa9
llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -4066,6 +4066,10 @@ bool VectorCombine::shrinkPhiOfShuffles(Instruction &I) {
4066
if (NewCost > OldCost)
4067
return false;
4068
4069
+ LLVM_DEBUG(dbgs() << "Found a phi of mergeable shuffles: " << I
4070
+ << "\n OldCost: " << OldCost << " vs NewCost: " << NewCost
4071
+ << "\n");
4072
+
4073
// Create new shuffles and narrowed phi.
4074
auto Builder = IRBuilder(Shuf);
4075
Builder.SetCurrentDebugLocation(Shuf->getDebugLoc());
0 commit comments