Exclude pad_ symbols

This commit is contained in:
robojumper
2024-10-06 19:54:10 +02:00
parent ba90c20b27
commit befd5331ec
+1 -1
View File
@@ -55,7 +55,7 @@ def parse_symbol(line):
vAddr = objs[2]
name = objs[5]
if name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr:
if name.startswith("pad_") or name.startswith("gap_") or name == "*fill*" or name.startswith(".") or "........" in vAddr:
return None
if default_sym_re.match(name):
return None