From 21a8896ae9f187c4480fe1a541dce599483817a6 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Wed, 23 Apr 2025 14:22:29 -0400 Subject: Add Function::Analyze API to perform on-demand function analysis. --- function.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index 89420f8c..07f685a5 100644 --- a/function.cpp +++ b/function.cpp @@ -2488,6 +2488,12 @@ Confidence Function::GetRegisterValueAtExit(uint32_t reg) const } +void Function::Analyze() +{ + BNAnalyzeFunction(m_object); +} + + void Function::Reanalyze(BNFunctionUpdateType type) { BNReanalyzeFunction(m_object, type); -- cgit v1.3.1