Skip to content

Commit 76c0271

Browse files
authored
Rollup merge of rust-lang#92532 - krasimirgg:gsgdt-down, r=Mark-Simulacrum
revert rust-lang#92254 "Bump gsgdt to 0.1.3" This reverts rust-lang#92254 since gsgdt 0.1.3 was yanked: rust-lang#92254 (comment)
2 parents b2d6ff4 + a9698e2 commit 76c0271

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1505,9 +1505,9 @@ dependencies = [
15051505

15061506
[[package]]
15071507
name = "gsgdt"
1508-
version = "0.1.3"
1508+
version = "0.1.2"
15091509
source = "registry+https://github.com/rust-lang/crates.io-index"
1510-
checksum = "cb958139bb971f37d2f5423436f137768f88b9c616b4c21d4f634dd129508d60"
1510+
checksum = "a0d876ce7262df96262a2a19531da6ff9a86048224d49580a585fc5c04617825"
15111511
dependencies = [
15121512
"serde",
15131513
]

Diff for: compiler/rustc_middle/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doctest = false
1010
rustc_arena = { path = "../rustc_arena" }
1111
bitflags = "1.2.1"
1212
either = "1.5.0"
13-
gsgdt = "0.1.3"
13+
gsgdt = "0.1.2"
1414
tracing = "0.1"
1515
rustc-rayon = "0.3.1"
1616
rustc-rayon-core = "0.3.1"

Diff for: compiler/rustc_middle/src/mir/generic_graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn bb_to_graph_node(block: BasicBlock, body: &Body<'_>, dark_mode: bool) -> Node
5555
data.terminator().kind.fmt_head(&mut terminator_head).unwrap();
5656
stmts.push(terminator_head);
5757

58-
Node::from_list(stmts, label, title, style)
58+
Node::new(stmts, label, title, style)
5959
}
6060

6161
// Must match `[0-9A-Za-z_]*`. This does not appear in the rendered graph, so

0 commit comments

Comments
 (0)