summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/function.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py
index 9f63b650..40b9901d 100644
--- a/python/function.py
+++ b/python/function.py
@@ -3010,6 +3010,15 @@ class Function:
:param str name: Name of the debug report
:rtype: None
"""
+ debug_report_alias = {
+ "stack" : "stack_adjust_graph",
+ "mlil" : "mlil_translator",
+ "hlil" : "high_level_il"
+ }
+
+ if name in debug_report_alias:
+ name = debug_report_alias[name]
+
core.BNRequestFunctionDebugReport(self.handle, name)
self.view.update_analysis()