Skip to content

Commit 59f2bc6

Browse files
committed
Expand gen_recomp_syms.py asm label detection to period prefixed symbols
1 parent eb84ea9 commit 59f2bc6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tools/gen_recomp_syms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ def gen_core_syms(syms_toml: TextIO, datasyms_toml: TextIO):
7777
sym_name: str = sym.name
7878
sym_name = SYMBOL_RENAMES.get(sym_name, sym_name)
7979

80-
if sym_name.startswith("L8"):
80+
if sym_name.startswith("L8") or sym_name.startswith("."):
81+
# Local asm label
8182
continue
8283
if sym_name.endswith(".NON_MATCHING"):
8384
# Non-matching functions have a duplicate symbol with a .NON_MATCHING suffix, ignore these

0 commit comments

Comments
 (0)