diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-30 13:42:58 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-07-01 23:23:17 -0400 |
| commit | 7323550247538688397481951258523679955041 (patch) | |
| tree | abd0b04400e91d7ac9c4d2cbaa85853da2f36884 /mediumlevelil.cpp | |
| parent | bf02a342b3122e46a91d0c5da57449c3d4a01999 (diff) | |
Make constructing an MLILFunction require an LLILFunction
Diffstat (limited to 'mediumlevelil.cpp')
| -rw-r--r-- | mediumlevelil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediumlevelil.cpp b/mediumlevelil.cpp index 0a285628..2eb2f9bd 100644 --- a/mediumlevelil.cpp +++ b/mediumlevelil.cpp @@ -31,9 +31,9 @@ MediumLevelILLabel::MediumLevelILLabel() } -MediumLevelILFunction::MediumLevelILFunction(Architecture* arch, Function* func) +MediumLevelILFunction::MediumLevelILFunction(Architecture* arch, Function* func, LowLevelILFunction* lowLevelIL) { - m_object = BNCreateMediumLevelILFunction(arch->GetObject(), func ? func->GetObject() : nullptr); + m_object = BNCreateMediumLevelILFunction(arch->GetObject(), func->GetObject(), lowLevelIL->GetObject()); } |
