From 7a0fadf3e1462169dd432886d3360b932d9d3a42 Mon Sep 17 00:00:00 2001 From: pompolic <pompolic@special-circumstanc.es> Date: Mon, 30 Aug 2021 20:22:05 +0200 Subject: [PATCH] More cleanup --- gdb-port/parser-name-instrumentation-gdb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gdb-port/parser-name-instrumentation-gdb.py b/gdb-port/parser-name-instrumentation-gdb.py index 9f5e63c..076a438 100644 --- a/gdb-port/parser-name-instrumentation-gdb.py +++ b/gdb-port/parser-name-instrumentation-gdb.py @@ -335,7 +335,6 @@ class ParserVirtualBreakpoint(gdb.Breakpoint): block = frame.block() # function name is parse_* # we extract the second part - #TODO: by generating the name based on the VTable, we can name a parser as soon as we see it # This is pretty much the same as naming it based on which parse_* function is called, so long as foo_vt contains parse_foo , and not e.g. parse_bar parser_type = frame.function().name.split("_")[1] parser_name = "(Unnamed " + parser_type + ")" -- GitLab