We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd72f49 commit 3592d34Copy full SHA for 3592d34
rust/examples/flowgraph.rs
@@ -130,9 +130,8 @@ fn main() {
130
test_graph();
131
132
for func in bv.functions().iter().take(5) {
133
- let graph = func.create_graph(FunctionViewType::MediumLevelIL, None);
134
// TODO: Why are the nodes empty? Python its empty until its shown...
135
- assert!(!graph.nodes().is_empty());
+ let graph = func.create_graph(FunctionViewType::MediumLevelIL, None);
136
let func_name = func.symbol().short_name();
137
let title = func_name.to_string_lossy();
138
bv.show_graph_report(&title, &graph);
0 commit comments