This commit is contained in:
Ethan Roseman 2021-02-11 01:52:26 +09:00
parent b3ee1221b0
commit 26d8a19c32

View File

@ -103,7 +103,7 @@ def read_elf():
continue continue
addr = int(components[0], 16) addr = int(components[0], 16)
if " F " in line: if " F " in line or name.startswith("func_"):
type = "func" type = "func"
else: else:
type = "data" type = "data"