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 532bc46 commit 65099eeCopy full SHA for 65099ee
scripts/benchmark.py
@@ -108,7 +108,7 @@ def get_blocks(binary_path: str) -> List[Block]:
108
cfg = p.analyses[angr.analyses.CFGFast].prep(show_progressbar=True)(
109
resolve_indirect_jumps=False, force_smart_scan=False
110
)
111
- for n in cast(Iterable[angr.analyses.cfg.CFGNode], cfg.model.nodes()):
+ for n in cast(Iterable[angr.knowledge_plugins.cfg.cfg_model.CFGNode], cfg.model.nodes()):
112
if n.byte_string:
113
blocks.append(Block(n.addr, n.byte_string))
114
log.info("Saving blocks to file '%s' for subsequent benchmarks...", blocks_file_path)
0 commit comments