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.
2 parents e0f50c8 + ec14566 commit ea0f86eCopy full SHA for ea0f86e
lib/SILOptimizer/PassManager/PassManager.cpp
@@ -487,7 +487,8 @@ bool SILPassManager::continueWithNextSubpassRun(
487
488
unsigned subPass = numSubpassesRun++;
489
490
- if (isFunctionSelectedForPrinting(function) && SILPrintEverySubpass) {
+ if (SILPrintEverySubpass && isFunctionSelectedForPrinting(function) &&
491
+ doPrintBefore(trans, function)) {
492
dumpPassInfo("*** SIL function before ", trans, function);
493
llvm::dbgs() << " *** sub-pass " << subPass << " for ";
494
if (forTransformee) {
0 commit comments