Throughput assignment adjustments

This commit is contained in:
stefandesouza
2023-09-25 23:20:10 +02:00
parent db899a2709
commit 0b2753a78d
4 changed files with 25 additions and 26 deletions

View File

@@ -600,7 +600,7 @@ class ParserAArch64(BaseParser):
"""Check if ``flag_a`` is dependent on ``flag_b``"""
# we assume flags are independent of each other, e.g., CF can be read while ZF gets written
# TODO validate this assumption
if flag_a["name"] == flag_b["name"]:
if flag_a.name == flag_b["name"]:
return True
return False