From 5b575ff6a87061221e1c17824b2b42af839ccc74 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Tue, 8 Jul 2025 12:13:19 -0400 Subject: Various improvements for guided disassembly mode. --- function.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index 19d3fbc7..c2e52e55 100644 --- a/function.cpp +++ b/function.cpp @@ -1780,6 +1780,12 @@ void Function::RemoveGuidedSourceBlocks(const std::vector& addresse } +bool Function::IsGuidedSourceBlock(Architecture* arch, uint64_t addr) const +{ + return BNIsGuidedSourceBlock(m_object, arch->GetObject(), addr); +} + + std::vector Function::GetGuidedSourceBlocks() { size_t count; -- cgit v1.3.1