Skip to content

Commit 7512acf

Browse files
committed
SwiftCompilerSources: fix debug description of Set
Make each instruction to appear in a separate line
1 parent f388361 commit 7512acf

File tree

1 file changed

+1
-1
lines changed
  • SwiftCompilerSources/Sources/Optimizer/DataStructures

1 file changed

+1
-1
lines changed

SwiftCompilerSources/Sources/Optimizer/DataStructures/Set.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ struct InstructionSet : IntrusiveSet {
164164
var d = "{\n"
165165
for inst in function.instructions {
166166
if contains(inst) {
167-
d += inst.description
167+
d += inst.description + "\n"
168168
}
169169
}
170170
d += "}\n"

0 commit comments

Comments
 (0)