Auto merge of #92254 - krasimirgg:gsgdt-up, r=Mark-Simulacrum
Bump `gsgdt` to 0.1.3
No functional changes intended.
The 0.1.2 -> 0.1.3 commit 3e1dcec539
renames `Node::new` to `Node::from_list`.
This commit is contained in:
commit
6211dd7250
3 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@ doctest = false
|
|||
rustc_arena = { path = "../rustc_arena" }
|
||||
bitflags = "1.2.1"
|
||||
either = "1.5.0"
|
||||
gsgdt = "0.1.2"
|
||||
gsgdt = "0.1.3"
|
||||
tracing = "0.1"
|
||||
rustc-rayon = "0.3.1"
|
||||
rustc-rayon-core = "0.3.1"
|
||||
|
|
|
@ -55,7 +55,7 @@ fn bb_to_graph_node(block: BasicBlock, body: &Body<'_>, dark_mode: bool) -> Node
|
|||
data.terminator().kind.fmt_head(&mut terminator_head).unwrap();
|
||||
stmts.push(terminator_head);
|
||||
|
||||
Node::new(stmts, label, title, style)
|
||||
Node::from_list(stmts, label, title, style)
|
||||
}
|
||||
|
||||
// Must match `[0-9A-Za-z_]*`. This does not appear in the rendered graph, so
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue