diff --git a/reccmp/isledecomp/compare/db.py b/reccmp/isledecomp/compare/db.py index 5fa3c72e..f35d78f0 100644 --- a/reccmp/isledecomp/compare/db.py +++ b/reccmp/isledecomp/compare/db.py @@ -338,7 +338,6 @@ def set_function_pair(self, orig: int, recomp: int) -> bool: """For lineref match or _entry""" return self.set_pair(orig, recomp, EntityType.FUNCTION) - def set_function_pair_tentative(self, orig: int, recomp: int) -> bool: """For lineref match or _entry""" return self.set_pair_tentative(orig, recomp, EntityType.FUNCTION) diff --git a/reccmp/isledecomp/cvdump/symbols.py b/reccmp/isledecomp/cvdump/symbols.py index c183bf91..9c1aca14 100644 --- a/reccmp/isledecomp/cvdump/symbols.py +++ b/reccmp/isledecomp/cvdump/symbols.py @@ -72,9 +72,12 @@ class CvdumpSymbolsParser: r'\*\* Module: "(?P[^"]+)"(?: from "(?P[^"]+)")?$' ) - _compile_key_value = re.compile( - r"\s{9}(?P[^:]+):\s(?P.+)$" - ) + _compile_key_value = re.compile(r"\s{9}(?P[^:]+):\s(?P.+)$") + """ + For lines like + ` Target processor: 80486` + within an `S_COMPILE` symbol. + """ _flags_frame_pointer_regex = re.compile(r"\s*Flags: Frame Ptr Present$")