Skip to content

Commit a4e94ec

Browse files
committed
update gsgdt
1 parent 5b049e1 commit a4e94ec

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1342,9 +1342,9 @@ dependencies = [
13421342

13431343
[[package]]
13441344
name = "gsgdt"
1345-
version = "0.1.1"
1345+
version = "0.1.2"
13461346
source = "registry+https://github.com/rust-lang/crates.io-index"
1347-
checksum = "9cb4a3313cdc3c65906272ddd8987c7291ff6df4b5c9997c1232b6acd1ceab24"
1347+
checksum = "a0d876ce7262df96262a2a19531da6ff9a86048224d49580a585fc5c04617825"
13481348
dependencies = [
13491349
"serde",
13501350
]

compiler/rustc_mir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doctest = false
1010
[dependencies]
1111
either = "1.5.0"
1212
rustc_graphviz = { path = "../rustc_graphviz" }
13-
gsgdt = "0.1.1"
13+
gsgdt = "0.1.2"
1414
itertools = "0.9"
1515
tracing = "0.1"
1616
polonius-engine = "0.12.0"

compiler/rustc_mir/src/util/generic_graph.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
use gsgdt::{Edge, Graph, GraphKind, Node, NodeStyle};
1+
use gsgdt::{Edge, Graph, Node, NodeStyle};
22
use rustc_hir::def_id::DefId;
33
use rustc_index::vec::Idx;
44
use rustc_middle::mir::*;
55
use rustc_middle::ty::TyCtxt;
66

77
/// Convert an MIR function into a gsgdt Graph
8-
pub fn mir_fn_to_generic_graph<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'_>, subgraph: bool) -> Graph {
8+
pub fn mir_fn_to_generic_graph<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'_>) -> Graph {
99
let def_id = body.source.def_id();
10-
let kind = if subgraph { GraphKind::Subgraph } else { GraphKind::Digraph };
1110
let def_name = graphviz_safe_def_name(def_id);
1211
let graph_name = format!("Mir_{}", def_name);
1312
let dark_mode = tcx.sess.opts.debugging_opts.graphviz_dark_mode;
@@ -33,7 +32,7 @@ pub fn mir_fn_to_generic_graph<'tcx>(tcx: TyCtxt<'tcx>, body: &Body<'_>, subgrap
3332
}
3433
}
3534

36-
Graph::new(graph_name, kind, nodes, edges)
35+
Graph::new(graph_name, nodes, edges)
3736
}
3837

3938
fn bb_to_graph_node(block: BasicBlock, body: &Body<'_>, dark_mode: bool) -> Node {

compiler/rustc_mir/src/util/graphviz.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ where
6060
let mut label = String::from("");
6161
// FIXME: remove this unwrap
6262
write_graph_label(tcx, body, &mut label).unwrap();
63-
let g = mir_fn_to_generic_graph(tcx, body, subgraph);
63+
let g = mir_fn_to_generic_graph(tcx, body);
6464
let settings = GraphvizSettings {
6565
graph_attrs: Some(graph_attrs.join(" ")),
6666
node_attrs: Some(content_attrs.join(" ")),
6767
edge_attrs: Some(content_attrs.join(" ")),
6868
graph_label: Some(label),
6969
};
70-
g.to_dot(w, &settings)
70+
g.to_dot(w, &settings, subgraph)
7171
}
7272

7373
/// Write the graphviz DOT label for the overall graph. This is essentially a block of text that

0 commit comments

Comments
 (0)