diff options
| author | Brian Potchik <brian@vector35.com> | 2025-07-08 12:13:19 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-07-08 12:13:19 -0400 |
| commit | 5b575ff6a87061221e1c17824b2b42af839ccc74 (patch) | |
| tree | 5f37836f732f1af49a048c9a957250e2bc57984b /function.cpp | |
| parent | 33e9108b92a73782e271852c6b438c2937706fbe (diff) | |
Various improvements for guided disassembly mode.
Diffstat (limited to 'function.cpp')
| -rw-r--r-- | function.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
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<ArchAndAddr>& addresse } +bool Function::IsGuidedSourceBlock(Architecture* arch, uint64_t addr) const +{ + return BNIsGuidedSourceBlock(m_object, arch->GetObject(), addr); +} + + std::vector<ArchAndAddr> Function::GetGuidedSourceBlocks() { size_t count; |
