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 5ed6229 commit f739aa4Copy full SHA for f739aa4
llvm/lib/Transforms/Vectorize/VectorCombine.cpp
@@ -128,6 +128,8 @@ class VectorCombine {
128
bool shrinkType(Instruction &I);
129
130
void replaceValue(Value &Old, Value &New) {
131
+ LLVM_DEBUG(dbgs() << "VC: Replacing: " << Old << '\n');
132
+ LLVM_DEBUG(dbgs() << " With: " << New << '\n');
133
Old.replaceAllUsesWith(&New);
134
if (auto *NewI = dyn_cast<Instruction>(&New)) {
135
New.takeName(&Old);
0 commit comments