summaryrefslogtreecommitdiff
path: root/function.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2016-08-30 21:59:40 -0400
committerRusty Wagner <rusty@vector35.com>2016-08-30 21:59:40 -0400
commit3978e18b09ca745fd08defb8f00fbece267beaf2 (patch)
tree5c5bf1ded8c38f3f18874f5990641f701fd194a7 /function.cpp
parent827662fbb6caa9d0aa3089cafb20a578a68eaee7 (diff)
Add API to reanalyze
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 78a33bda..cbd9ec40 100644
--- a/function.cpp
+++ b/function.cpp
@@ -572,3 +572,9 @@ void Function::SetIntegerConstantDisplayType(Architecture* arch, uint64_t instrA
{
BNSetIntegerConstantDisplayType(m_object, arch->GetObject(), instrAddr, value, operand, type);
}
+
+
+void Function::Reanalyze()
+{
+ BNReanalyzeFunction(m_object);
+}