From 894950e87dc8c7631fe38cdfe47170ce1f94c062 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Wed, 15 May 2019 20:36:11 +0800 Subject: Scripts - Extend log_get_last_function with more start-of-function signatures --- scripts/log_get_last_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/log_get_last_function.py b/scripts/log_get_last_function.py index 7a148639..eb9f8e94 100644 --- a/scripts/log_get_last_function.py +++ b/scripts/log_get_last_function.py @@ -11,7 +11,7 @@ def main(): fcn_lines = [] found_fcn = False for line in args.logfile: - if 'visit_function: ' in line: + if 'visit_function: ' in line or 'Trans_Monomorphise_List: ' in line or 'Trans_Codegen: FUNCTION CODE' in line: if found_fcn: break fcn_lines = [] -- cgit v1.2.3