mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 00:31:16 +00:00
Fix CI issue
This commit is contained in:
parent
2b1ff1dec4
commit
d1caef7f84
@ -99,7 +99,11 @@ def read_line(self, line: str):
|
|||||||
# We do not need this info at the moment, might be useful in the future
|
# We do not need this info at the moment, might be useful in the future
|
||||||
pass
|
pass
|
||||||
elif (match := self._flags_frame_pointer_regex.match(line)) is not None:
|
elif (match := self._flags_frame_pointer_regex.match(line)) is not None:
|
||||||
assert self.current_function is not None
|
if self.current_function is None:
|
||||||
|
logger.error(
|
||||||
|
"Found a `Flags: Frame Ptr Present` but self.current_function is None"
|
||||||
|
)
|
||||||
|
return
|
||||||
self.current_function.frame_pointer_present = True
|
self.current_function.frame_pointer_present = True
|
||||||
else:
|
else:
|
||||||
# Most of these are either `** Module: [...]` or data we do not care about
|
# Most of these are either `** Module: [...]` or data we do not care about
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user