summaryrefslogtreecommitdiff
path: root/examples/workflows/tailcall/tailcall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/workflows/tailcall/tailcall.cpp')
-rw-r--r--examples/workflows/tailcall/tailcall.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/workflows/tailcall/tailcall.cpp b/examples/workflows/tailcall/tailcall.cpp
index 2cb77b8e..294b6471 100644
--- a/examples/workflows/tailcall/tailcall.cpp
+++ b/examples/workflows/tailcall/tailcall.cpp
@@ -117,15 +117,15 @@ extern "C"
BINARYNINJAPLUGIN bool CorePluginInit()
{
- Ref<Workflow> customTailCallWorkflow = Workflow::Instance("core.function.defaultAnalysis")->Clone("CustomTailCallWorkflow");
+ Ref<Workflow> customTailCallWorkflow = Workflow::Instance("core.function.baseAnalysis")->Clone("CustomTailCallWorkflow");
customTailCallWorkflow->RegisterActivity(new Activity("extension.translateTailCalls", &TailCallTranslation));
customTailCallWorkflow->Replace("core.function.translateTailCalls", "extension.translateTailCalls");
customTailCallWorkflow->Remove("core.function.translateTailCalls");
Workflow::RegisterWorkflow(customTailCallWorkflow,
R"#({
"title" : "Tail Call Translation (Example)",
- "description" : "This analysis stands in as an example to demonstrate Binary Ninja's extensible analysis APIs. ***Note** this feature is under active development and subject to change without notice.",
- "capabilities" : []
+ "description" : "This analysis stands in as an example to demonstrate Binary Ninja's extensible analysis APIs.",
+ "targetType" : "function"
})#");
return true;