diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-03-01 03:45:51 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-03-01 03:45:51 -0500 |
| commit | 94b38cee51eff16f1e79945806088c7ae60016d7 (patch) | |
| tree | 4857d8240334f2ec40aa7a46f7fcea6a2e9ed899 /lowlevelil.cpp | |
| parent | dc0f16fa9bbac0388bb844af8d9f6c3b72ec31e8 (diff) | |
Adding framework for medium level IL
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index fecde9c8..5a789981 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -720,7 +720,7 @@ set<size_t> LowLevelILFunction::GetSSARegisterUses(uint32_t reg, size_t idx) con for (size_t i = 0; i < count; i++) result.insert(instrs[i]); - BNFreeLowLevelILInstructionList(instrs); + BNFreeILInstructionList(instrs); return result; } @@ -734,7 +734,7 @@ set<size_t> LowLevelILFunction::GetSSAFlagUses(uint32_t flag, size_t idx) const for (size_t i = 0; i < count; i++) result.insert(instrs[i]); - BNFreeLowLevelILInstructionList(instrs); + BNFreeILInstructionList(instrs); return result; } @@ -748,7 +748,7 @@ set<size_t> LowLevelILFunction::GetSSAMemoryUses(size_t idx) const for (size_t i = 0; i < count; i++) result.insert(instrs[i]); - BNFreeLowLevelILInstructionList(instrs); + BNFreeILInstructionList(instrs); return result; } |
