diff options
| author | Xusheng <xusheng@vector35.com> | 2021-02-05 20:28:13 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2021-04-22 10:52:39 +0800 |
| commit | c4b1dd712783e7474570705e6d95183a0c02a76e (patch) | |
| tree | 0393986e0078cb20610c8ad091db061f8f41a08b /basicblock.cpp | |
| parent | a355d5c9aa1978d10f378931bfd5f06be60bae98 (diff) | |
add persistent search result
Diffstat (limited to 'basicblock.cpp')
| -rw-r--r-- | basicblock.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/basicblock.cpp b/basicblock.cpp index e2e58432..3e3fccef 100644 --- a/basicblock.cpp +++ b/basicblock.cpp @@ -475,3 +475,9 @@ Ref<MediumLevelILFunction> BasicBlock::GetMediumLevelILFunction() const return nullptr; return new MediumLevelILFunction(func); } + + +bool BasicBlock::GetInstructionContainingAddress(uint64_t addr, uint64_t* start) +{ + return BNGetBasicBlockInstructionContainingAddress(m_object, addr, start); +} |
