mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-04-02 17:59:43 -04:00
Fix spurious reccmp warnings (#1101)
Co-authored-by: jonschz <jonschz@users.noreply.github.com>
This commit is contained in:
parent
4a01d15c36
commit
ece3550e62
1 changed files with 1 additions and 2 deletions
|
@ -79,7 +79,6 @@ class CvdumpSymbolsParser:
|
|||
"S_THUNK32",
|
||||
"S_LABEL32",
|
||||
"S_LDATA32",
|
||||
"S_LPROC32",
|
||||
"S_UDT",
|
||||
]
|
||||
|
||||
|
@ -117,7 +116,7 @@ class CvdumpSymbolsParser:
|
|||
symbol_type: str = line_match.group("symbol_type")
|
||||
second_part: Optional[str] = line_match.group("second_part")
|
||||
|
||||
if symbol_type == "S_GPROC32":
|
||||
if symbol_type in ["S_GPROC32", "S_LPROC32"]:
|
||||
assert second_part is not None
|
||||
if (match := self._symbol_line_function_regex.match(second_part)) is None:
|
||||
logger.error("Invalid function symbol: %s", line[:-1])
|
||||
|
|
Loading…
Add table
Reference in a new issue