Skip to content

Commit 7a5758e

Browse files
committed
RequirementMachine: Fix missing space in debug output
1 parent a2f2ffd commit 7a5758e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/RequirementMachine/RewriteSystem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void Rule::dump(llvm::raw_ostream &out) const {
152152
if (Redundant)
153153
out << " [redundant]";
154154
if (Conflicting)
155-
out << "[conflicting]";
155+
out << " [conflicting]";
156156
}
157157

158158
RewriteSystem::RewriteSystem(RewriteContext &ctx)

0 commit comments

Comments
 (0)