summaryrefslogtreecommitdiff
path: root/function.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-08-17 22:11:20 -0400
committerRusty Wagner <rusty@vector35.com>2018-08-17 22:11:20 -0400
commit8e320c4be695cd47ae93673320d525ce513cec90 (patch)
treec04f8c9c3a05016fd5bce94496c1a9fe72fd137e /function.cpp
parent1df50c8093bf3b949055d2670836fa1bb742fc1b (diff)
Fix report collection reference count bug and add debug report support
Diffstat (limited to 'function.cpp')
-rw-r--r--function.cpp6
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)