From 26d8a19c320c5842dce1a52bd18a452b5f01e39e Mon Sep 17 00:00:00 2001 From: Ethan Roseman Date: Thu, 11 Feb 2021 01:52:26 +0900 Subject: [PATCH] test --- tools/add_to_symbol_addrs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/add_to_symbol_addrs.py b/tools/add_to_symbol_addrs.py index 00639961d6..bb81628bed 100755 --- a/tools/add_to_symbol_addrs.py +++ b/tools/add_to_symbol_addrs.py @@ -103,7 +103,7 @@ def read_elf(): continue addr = int(components[0], 16) - if " F " in line: + if " F " in line or name.startswith("func_"): type = "func" else: type = "data"