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 bcf5e97 commit 84f02eaCopy full SHA for 84f02ea
lib/AST/RequirementMachine/RewriteSystem.cpp
@@ -398,12 +398,13 @@ void RewriteSystem::simplifyRewriteSystem() {
398
loop.add(RewriteStep::forRewriteRule(/*startOffset=*/0, /*endOffset=*/0,
399
newRuleID, /*inverse=*/true));
400
401
- recordHomotopyGenerator(MutableTerm(lhs), loop);
402
-
403
if (Debug.contains(DebugFlags::Completion)) {
404
- llvm::dbgs() << "$ Right hand side simplification recorded a loop: ";
405
- HomotopyGenerators.back().dump(llvm::dbgs(), *this);
+ llvm::dbgs() << "$ Right hand side simplification recorded a loop at ";
+ llvm::dbgs() << lhs << ": ";
+ loop.dump(llvm::dbgs(), MutableTerm(lhs), *this);
406
}
+
407
+ recordHomotopyGenerator(MutableTerm(lhs), loop);
408
409
410
0 commit comments