diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-08-17 22:11:20 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2018-08-17 22:11:20 -0400 |
| commit | 8e320c4be695cd47ae93673320d525ce513cec90 (patch) | |
| tree | c04f8c9c3a05016fd5bce94496c1a9fe72fd137e /function.cpp | |
| parent | 1df50c8093bf3b949055d2670836fa1bb742fc1b (diff) | |
Fix report collection reference count bug and add debug report support
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 1236cec6..35fe4123 100644 --- a/function.cpp +++ b/function.cpp @@ -1412,6 +1412,12 @@ Ref<FlowGraph> Function::GetUnresolvedStackAdjustmentGraph() } +void Function::RequestDebugReport(const string& name) +{ + BNRequestFunctionDebugReport(m_object, name.c_str()); +} + + AdvancedFunctionAnalysisDataRequestor::AdvancedFunctionAnalysisDataRequestor(Function* func): m_func(func) { if (m_func) |
