diff options
| author | Brian Potchik <brian@vector35.com> | 2021-08-04 10:32:38 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2021-08-04 10:32:38 -0400 |
| commit | 55e80204f6b8f804e81c54f2d5188a99ab0afb6f (patch) | |
| tree | 1df308efc7cabd5902cc08dc2e344fc7d99f9ee2 /lowlevelil.cpp | |
| parent | 7d0b3327b26a655756951fa988f918f5cb6f728b (diff) | |
Expose LLIL SSA Generation API.
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 4dc113e0..97abe279 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -432,6 +432,12 @@ void LowLevelILFunction::Finalize() } +void LowLevelILFunction::GenerateSSAForm() +{ + BNGenerateLowLevelILSSAForm(m_object); +} + + bool LowLevelILFunction::GetExprText(Architecture* arch, ExprId expr, vector<InstructionTextToken>& tokens) { size_t count; |
