File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4447,7 +4447,8 @@ class ConstraintSystem {
4447
4447
if (isDebugMode () && getPhase () == ConstraintSystemPhase::Solving) {
4448
4448
auto &log = llvm::errs ();
4449
4449
log.indent (solverState->getCurrentIndent () + 2 ) << " (added constraint: " ;
4450
- constraint->print (log, &getASTContext ().SourceMgr );
4450
+ constraint->print (log, &getASTContext ().SourceMgr ,
4451
+ solverState->getCurrentIndent () + 4 );
4451
4452
log << " )\n " ;
4452
4453
}
4453
4454
@@ -4465,7 +4466,8 @@ class ConstraintSystem {
4465
4466
auto &log = llvm::errs ();
4466
4467
log.indent (solverState->getCurrentIndent () + 2 )
4467
4468
<< " (removed constraint: " ;
4468
- constraint->print (log, &getASTContext ().SourceMgr );
4469
+ constraint->print (log, &getASTContext ().SourceMgr ,
4470
+ solverState->getCurrentIndent () + 4 );
4469
4471
log << " )\n " ;
4470
4472
}
4471
4473
You can’t perform that action at this time.
0 commit comments