Don't print newline inside a node label

This is only to make the generated DOT more legible.
This commit is contained in:
Dylan MacKenzie 2019-10-15 21:35:09 -07:00
parent c27f7568bc
commit cae898781f

View File

@ -111,7 +111,7 @@ pub fn write_node_label<W: Write, INIT, FINI>(block: BasicBlock,
fini(w)?;
// Close the table
writeln!(w, "</table>")
write!(w, "</table>")
}
/// Write a graphviz DOT node for the given basic block.